From 38412ecb5daa1826574ad0f132d23dc2ef4288bf Mon Sep 17 00:00:00 2001 From: Dan Pickett Date: Mon, 15 Dec 2008 11:47:39 -0600 Subject: Fixed ActionView::TestCase current url context [#1561 state:resolved] Signed-off-by: Joshua Peek --- actionpack/test/view/test_case_test.rb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 actionpack/test/view/test_case_test.rb (limited to 'actionpack/test/view') diff --git a/actionpack/test/view/test_case_test.rb b/actionpack/test/view/test_case_test.rb new file mode 100644 index 0000000000..9124198b28 --- /dev/null +++ b/actionpack/test/view/test_case_test.rb @@ -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 -- cgit v1.2.3