Tag Archives: transactions

Adding multiple database support to Cucumber

The Vqmetrics application needs to connect to two different databases. The first holds the videos, authors and their relevant statistics, while the second database holds the users, monitors and trackers. We do this by specifying two databases in config/database.yml. development: database: vqmetrics_devel < <: *login_dev_local   vqdata_development: &VQDATA_TEST database: vqdata_devel <<: *login_dev_local So by default [...]