]> nos-oignons.net Git - gestion-adh.git/blobdiff - features/step_definitions/git.rb
Try to make Git play nicer with Aruba
[gestion-adh.git] / features / step_definitions / git.rb
index 8c00ff42d013818876b3d7b0463c4d6174c637ea..82cc09faa13de40e8baf88e8458f512c34081fbd 100644 (file)
@@ -11,7 +11,7 @@ Given /^un clone du Git contenant les adhésions$/ do
   cd '..'
 
   # Clone it now
-  run_simple 'git clone --quiet main clone'
+  run_simple "git clone --quiet --local file://#{current_dir}/main clone"
   cd 'clone'
   create_dir 'Membres'
   BASE_MEMBERS.each_pair do |number, data|
@@ -19,7 +19,7 @@ Given /^un clone du Git contenant les adhésions$/ do
     write_file file, render_member_file(data)
     run_simple "git add #{file}"
   end
-  run_simple 'git commit --quiet -m "Initial data set from fixtures"'
+  run_simple 'git commit -m "Initial data set from fixtures"'
   run_simple 'git push --quiet origin master'
 end