Merged updates from trunk into stable branch
[feedcatcher.git] / vendor / rails / actionpack / test / view / test_case_test.rb
diff --git a/vendor/rails/actionpack/test/view/test_case_test.rb b/vendor/rails/actionpack/test/view/test_case_test.rb
new file mode 100644 (file)
index 0000000..9124198
--- /dev/null
@@ -0,0 +1,8 @@
+require 'abstract_unit'
+
+class TestCaseTest < ActionView::TestCase
+  def test_should_have_current_url
+    controller = TestController.new
+    assert_nothing_raised(NoMethodError){ controller.url_for({:controller => "foo", :action => "index"}) }
+  end
+end