]> nos-oignons.net Git - gestion-adh.git/commitdiff
Silence git commands in cucumber step definitions
authorLunar <lunar@anargeek.net>
Sat, 1 Jun 2013 08:56:36 +0000 (10:56 +0200)
committerLunar <lunar@anargeek.net>
Sat, 1 Jun 2013 08:56:36 +0000 (10:56 +0200)
features/step_definitions/git.rb

index 50624ffb3644d8d0f94935a4a64fcc63301dd763..f2ba85e2d7a19315dc154a1fb3b21a9b872b400a 100644 (file)
@@ -5,11 +5,11 @@ Given /^un clone du Git contenant les adhésions$/ do
   create_dir 'main'
   cd 'main'
   @main_repository_path = current_dir
-  run_simple 'git init --bare'
+  run_simple 'git init --quiet --bare'
   cd '..'
 
   # Clone it now
-  run_simple 'git clone main clone'
+  run_simple 'git clone --quiet main clone'
   cd 'clone'
   create_dir 'Membres'
   BASE_SUBSCRIPTIONS.each_pair do |number, data|
@@ -17,8 +17,8 @@ Given /^un clone du Git contenant les adhésions$/ do
     write_file file, render_subscription_file(data)
     run_simple "git add #{file}"
   end
-  run_simple 'git commit -m "Initial data set from fixtures"'
-  run_simple 'git push origin master'
+  run_simple 'git commit --quiet -m "Initial data set from fixtures"'
+  run_simple 'git push --quiet origin master'
 end
 
 Given /^le « pre-commit hook » correctement configuré$/ do