diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2018-09-01 09:49:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-01 09:49:01 -0400 |
commit | d8ac08f6bf545c025d7540fb680f41233bcca566 (patch) | |
tree | 908a99721254e9b411b831a85882d05ee41c3773 /railties/test/isolation | |
parent | 02b4ba64615f7fb69975ff57d89ee7fa7c8bb45a (diff) | |
parent | a572d2283b05c4c05c220ff520732fc570beb2ae (diff) | |
download | rails-d8ac08f6bf545c025d7540fb680f41233bcca566.tar.gz rails-d8ac08f6bf545c025d7540fb680f41233bcca566.tar.bz2 rails-d8ac08f6bf545c025d7540fb680f41233bcca566.zip |
Merge pull request #33770 from eileencodes/multi-db-improvements-part-3
Part 3: Multi-db Improvements, identifying replica configurations
Diffstat (limited to 'railties/test/isolation')
-rw-r--r-- | railties/test/isolation/abstract_unit.rb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/railties/test/isolation/abstract_unit.rb b/railties/test/isolation/abstract_unit.rb index 0540311714..96d21b3ae2 100644 --- a/railties/test/isolation/abstract_unit.rb +++ b/railties/test/isolation/abstract_unit.rb @@ -124,26 +124,53 @@ module TestHelpers primary: <<: *default database: db/development.sqlite3 + primary_readonly: + <<: *default + database: db/development.sqlite3 + replica: true animals: <<: *default database: db/development_animals.sqlite3 migrations_paths: db/animals_migrate + animals_readonly: + <<: *default + database: db/development_animals.sqlite3 + migrations_paths: db/animals_migrate + replica: true test: primary: <<: *default database: db/test.sqlite3 + primary_readonly: + <<: *default + database: db/test.sqlite3 + replica: true animals: <<: *default database: db/test_animals.sqlite3 migrations_paths: db/animals_migrate + animals_readonly: + <<: *default + database: db/test_animals.sqlite3 + migrations_paths: db/animals_migrate + replica: true production: primary: <<: *default database: db/production.sqlite3 + primary_readonly: + <<: *default + database: db/production.sqlite3 + replica: true animals: <<: *default database: db/production_animals.sqlite3 migrations_paths: db/animals_migrate + animals_readonly: + <<: *default + database: db/production_animals.sqlite3 + migrations_paths: db/animals_migrate + readonly: true YAML end else |