From: Lunar <lunar@anargeek.net>
Date: Sat, 1 Jun 2013 08:56:36 +0000 (+0200)
Subject: Silence git commands in cucumber step definitions
X-Git-Url: https://www.nos-oignons.net/gitweb/gestion-adh.git/commitdiff_plain/92c014bab7ee310dcd4f94c193f8dc88e723b31b?ds=inline

Silence git commands in cucumber step definitions
---

diff --git a/features/step_definitions/git.rb b/features/step_definitions/git.rb
index 50624ff..f2ba85e 100644
--- a/features/step_definitions/git.rb
+++ b/features/step_definitions/git.rb
@@ -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