aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/view/test_case_test.rb
blob: 9124198b28a8b280fd37a513d7048d616060c05e (plain) (blame)
1
2
3
4
5
6
7
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