1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix test (closes #9120) [hasmanyjosh]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7638 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2007-09-25 19:06:24 +00:00
parent f65c202416
commit a4e1b79b07

View file

@ -16,7 +16,7 @@ class <%= controller_class_name %>ControllerTest < Test::Unit::TestCase
def test_should_get_index
get :index
assert_response :success
assert assigns(:<%= table_name %>)
assert_not_nil assigns(:<%= table_name %>)
end
def test_should_get_new