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

Fix wrong testcase. This is a testcase for db:test:prepare.

This commit is contained in:
kennyj 2012-06-28 00:33:08 +09:00
parent 21f9f1c67f
commit 066e839467

View file

@ -157,7 +157,7 @@ module ApplicationTests
add_to_config "config.active_record.schema_format = :sql"
output = Dir.chdir(app_path) do
`rails generate scaffold user username:string;
bundle exec rake db:migrate db:test:clone 2>&1 --trace`
bundle exec rake db:migrate db:test:prepare 2>&1 --trace`
end
assert_match(/Execute db:test:load_structure/, output)
end