Methods
N
P
T
Class Public methods
name()
# File actionview/test/template/test_test.rb, line 44
def self.name; 'Mocha::Mock'; end
Instance Public methods
persisted?()
# File actionview/test/template/test_test.rb, line 43
def persisted?; true; end
test_homepage_path()
# File actionview/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 actionview/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 actionview/test/template/test_test.rb, line 22
def test_title
  assert_equal "<h1>Ruby on Rails</h1>", title("Ruby on Rails")
end
to_model()
# File actionview/test/template/test_test.rb, line 42
def to_model; self; end