Commit 0cccad8cc3376d3e7e0d3b4dca050c03854f9ec4
Committed by
Diego Araújo
1 parent
a37162a8
Exists in
colab
and in
2 other branches
Add missing configuration file creation to setup
This script is supposed to setup properly an environment and thus this is a necessary configuration for successful acceptance test running.
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
bin/setup
| ... | ... | @@ -24,6 +24,7 @@ Dir.chdir APP_ROOT do |
| 24 | 24 | puts "\n== Copying sample files ==".green |
| 25 | 25 | unless File.exist?("config/database.yml") |
| 26 | 26 | run "cp config/database.yml.sample config/database.yml" |
| 27 | + run "cp features/support/kalibro_cucumber_helpers.yml.sample features/support/kalibro_cucumber_helpers.yml" | |
| 27 | 28 | end |
| 28 | 29 | |
| 29 | 30 | puts "\n== Preparing database ==".green | ... | ... |