3 Given /^un clone du Git contenant les adhésions$/ do
4 # Create main repository
9 BASE_SUBSCRIPTIONS.each_pair do |number, data|
10 file = subscription_filename_for_id(number)
11 write_file file, render_subscription_file(data)
12 run_simple "git add #{file}"
14 run_simple 'git commit -m "Initial data set from fixtures"'
18 run_simple 'git clone main clone'
22 When /je fait un `commit` du nouveau fichier$/ do
23 run_simple "git add #{@file}"
24 run_simple "git commit #{@file} -m 'new file'"