Methods
T
Instance Public methods
test_homepage_path()
# File actionpack/test/template/test_test.rb, line 26
def test_homepage_path
  with_test_route_set do
    assert_equal "/people", homepage_path
  end
end
test_homepage_url()
# File actionpack/test/template/test_test.rb, line 32
def test_homepage_url
  with_test_route_set do
    assert_equal "http://test.host/people", homepage_url
  end
end
test_title()
# File actionpack/test/template/test_test.rb, line 22
def test_title
  assert_equal "<h1>Ruby on Rails</h1>", title("Ruby on Rails")
end