I need to execute some rake tasks agains a database other than defined in database.yml, test group. Here is how database.yml looks like:
default: &default adapter: postgresql encoding: unicode user: postgres password: pool: 5 development: <<: *default database: decastore_development host: <%= ENV['DECASTORE_DATABASE_HOST'] %> test: <<: *default database: decastore_test host: <%= ENV['DECASTORE_DATABASE_HOST'] %> production: <<: *default host: <%= ENV['DECASTORE_DATABASE_HOST'] %> database: XXXX username: XXXXX password: <%= ENV['DECASTORE_DATABASE_PASSWORD'] %> mystore: adapter: oracle_enhanced host: <%= ENV['mystore_db_host']%> port: <%= ENV['mystore_db_port']%> database: <%= ENV['mystore_db_name']%> username: <%= ENV['mystore_db_user']%> password: <%= ENV['mystore_db_password']%> Is it possible to mix 2 database settings when running tests or I have to mock it everywhere ? Thank you. -- You received this message because you are subscribed to the Google Groups "rspec" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rspec/f723fd63-26b2-4ff7-a9ff-b8a3a69567f3%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
