Updated README.rdoc again
[feedcatcher.git] / vendor / rails / actionpack / test / view / test_case_test.rb
1 require 'abstract_unit'
2
3 class TestCaseTest < ActionView::TestCase
4 def test_should_have_current_url
5 controller = TestController.new
6 assert_nothing_raised(NoMethodError){ controller.url_for({:controller => "foo", :action => "index"}) }
7 end
8 end