From 0360b3eb1f64128cfaa6c4eeb20e624f51e41ecf Mon Sep 17 00:00:00 2001 From: kennyj Date: Sat, 17 Mar 2012 13:57:10 +0900 Subject: Fix GH #5435. db:structure:dump should be reenable. --- railties/test/application/rake_test.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'railties/test/application') diff --git a/railties/test/application/rake_test.rb b/railties/test/application/rake_test.rb index b6cbb10141..27d521485c 100644 --- a/railties/test/application/rake_test.rb +++ b/railties/test/application/rake_test.rb @@ -140,6 +140,18 @@ module ApplicationTests assert File.exists?(File.join(app_path, 'db', 'my_structure.sql')) end + def test_rake_dump_structure_should_be_called_twice_when_migrate_redo + add_to_config "config.active_record.schema_format = :sql" + + output = Dir.chdir(app_path) do + `rails g model post title:string; + bundle exec rake db:migrate:redo 2>&1 --trace;` + end + + # expect only Invoke db:structure:dump (first_time) + assert_no_match(/^\*\* Invoke db:structure:dump\s+$/, output) + end + def test_rake_dump_schema_cache Dir.chdir(app_path) do `rails generate model post title:string; -- cgit v1.2.3