diff options
author | Wojciech Wnętrzak <w.wnetrzak@gmail.com> | 2019-07-24 08:50:23 +0200 |
---|---|---|
committer | Wojciech Wnętrzak <w.wnetrzak@gmail.com> | 2019-07-24 09:19:13 +0200 |
commit | 5c1f6d1ff655a4c49ddbebe65156c08c8e853b1d (patch) | |
tree | 4a047b1af2fd72470f000690192377963a16f8fa /railties/test/application | |
parent | 31105c81cc82ae829c382a4eee2c5aa362882dea (diff) | |
download | rails-5c1f6d1ff655a4c49ddbebe65156c08c8e853b1d.tar.gz rails-5c1f6d1ff655a4c49ddbebe65156c08c8e853b1d.tar.bz2 rails-5c1f6d1ff655a4c49ddbebe65156c08c8e853b1d.zip |
Fixed db:prepare task to not touch schema when dump_schema_after_migration is false.
Diffstat (limited to 'railties/test/application')
-rw-r--r-- | railties/test/application/rake/dbs_test.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/railties/test/application/rake/dbs_test.rb b/railties/test/application/rake/dbs_test.rb index 79c521dbf6..c9931c45a6 100644 --- a/railties/test/application/rake/dbs_test.rb +++ b/railties/test/application/rake/dbs_test.rb @@ -630,6 +630,22 @@ module ApplicationTests assert_match(/CreateRecipes: migrated/, output) end end + + test "db:prepare does not touch schema when dumping is disabled" do + Dir.chdir(app_path) do + rails "generate", "model", "book", "title:string" + rails "db:create", "db:migrate" + + app_file "db/schema.rb", "Not touched" + app_file "config/initializers/disable_dumping_schema.rb", <<-RUBY + Rails.application.config.active_record.dump_schema_after_migration = false + RUBY + + rails "db:prepare" + + assert_equal("Not touched", File.read("db/schema.rb").strip) + end + end end end end |