+#-*- coding: utf-8 -*-
+
require 'fileutils'
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|
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