mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-24 19:20:13 +01:00
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
23 lines
293 B
Cheetah
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
|