diff options
author | Gannon McGibbon <gannon.mcgibbon@gmail.com> | 2019-03-07 19:54:34 -0500 |
---|---|---|
committer | Gannon McGibbon <gannon.mcgibbon@gmail.com> | 2019-03-08 03:14:56 -0500 |
commit | dcbb79d680da7742b235b278866850d5bafb8e0b (patch) | |
tree | ec38778c9b6971fe4810546c02e6ecba9e61a645 /railties/test | |
parent | a62683f3e4326b222b6ad95b8b2dfcc31026d227 (diff) | |
download | rails-dcbb79d680da7742b235b278866850d5bafb8e0b.tar.gz rails-dcbb79d680da7742b235b278866850d5bafb8e0b.tar.bz2 rails-dcbb79d680da7742b235b278866850d5bafb8e0b.zip |
Add version awareness to rails db:system:change
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/generators/db_system_change_generator_test.rb | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/railties/test/generators/db_system_change_generator_test.rb b/railties/test/generators/db_system_change_generator_test.rb index d476bfd2dc..d3d27b616a 100644 --- a/railties/test/generators/db_system_change_generator_test.rb +++ b/railties/test/generators/db_system_change_generator_test.rb @@ -40,7 +40,7 @@ module Rails assert_file("Gemfile") do |content| assert_match "# Use pg as the database for Active Record", content - assert_match "gem 'pg'", content + assert_match "gem 'pg', '>= 0.18', '< 2.0'", content end end @@ -54,7 +54,7 @@ module Rails assert_file("Gemfile") do |content| assert_match "# Use mysql2 as the database for Active Record", content - assert_match "gem 'mysql2'", content + assert_match "gem 'mysql2', '>= 0.4.4'", content end end @@ -68,7 +68,22 @@ module Rails assert_file("Gemfile") do |content| assert_match "# Use sqlite3 as the database for Active Record", content - assert_match "gem 'sqlite3'", content + assert_match "gem 'sqlite3', '~> 1.3', '>= 1.3.6'", content + end + end + + test "change from versioned gem to other versioned gem" do + run_generator ["--to", "sqlite3"] + run_generator ["--to", "mysql", "--force"] + + assert_file("config/database.yml") do |content| + assert_match "adapter: mysql2", content + assert_match "database: test_app", content + end + + assert_file("Gemfile") do |content| + assert_match "# Use mysql2 as the database for Active Record", content + assert_match "gem 'mysql2', '>= 0.4.4'", content end end end |