From 05230c13f664b6423bbd000814170172511e48be Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 8 Jul 2005 05:34:13 +0000 Subject: [PATCH] Include Javascript tests in rake #1655 [courtney] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1767 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- .../{javascript_helper.rb => javascript_helper_test.rb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename actionpack/test/template/{javascript_helper.rb => javascript_helper_test.rb} (95%) diff --git a/actionpack/test/template/javascript_helper.rb b/actionpack/test/template/javascript_helper_test.rb similarity index 95% rename from actionpack/test/template/javascript_helper.rb rename to actionpack/test/template/javascript_helper_test.rb index d94c22c484..fdcce49efa 100644 --- a/actionpack/test/template/javascript_helper.rb +++ b/actionpack/test/template/javascript_helper_test.rb @@ -105,9 +105,9 @@ def test_sortable_element sortable_element("mylist", :url => { :action => "order" }) assert_equal %(), sortable_element("mylist", :tag => "div", :constraint => "horizontal", :url => { :action => "order" }) - assert_equal %(), + assert_equal %||, sortable_element("mylist", :containment => ['list1','list2'], :constraint => "horizontal", :url => { :action => "order" }) - assert_equal %(), + assert_equal %(), sortable_element("mylist", :containment => 'list1', :constraint => "horizontal", :url => { :action => "order" }) end -- GitLab