tracks/config/database.yml.tmpl
Reinier Balt 8f349d3b6b set configurations for using cucumber and selenium
if you want to run it, update your database.yml to include cucumber and selenium environments (like in the .tmpl) and run

RAILS_ENV=selenium cucumber -p selenium
2010-02-02 22:52:32 +01:00

23 lines
293 B
Cheetah

development:
adapter: mysql
database: tracks
host: localhost
username: root
password:
test:
adapter: sqlite3
database: ":memory:"
production:
adapter: mysql
database: tracks
host: localhost
username: root
password:
cucumber:
<<: *TEST
selenium:
<<: *TEST