]> nos-oignons.net Git - gestion-adh.git/blobdiff - features/support/env.rb
Ajout de la possibilité de créer des récus pour les cotisations
[gestion-adh.git] / features / support / env.rb
index 07bb5831220aae28b0ae4ed30e092f5e6132225c..de7fbc5e14ae637c429eea3eebbd148b24b2e712 100644 (file)
@@ -21,8 +21,11 @@ Before do
   @aruba_timeout_seconds = 20
   @orig_wiki_path = ENV['NOS_OIGNONS_BOARD_WIKI_PATH']
   @orig_reminder_db_path = ENV['NOS_OIGNONS_REMINDER_DB']
+  @orig_reciepts_dir = ENV['NOS_OIGNONS_RECIEPTS_DIR']
   ENV['NOS_OIGNONS_REMINDER_DB'] = File.join(current_dir, 'reminders.yaml')
   NosOignons::ReminderDb.instance.reload!
+  ENV['NOS_OIGNONS_RECIEPTS_DIR'] = File.join(current_dir, 'reciepts')
+  FileUtils.mkdir(ENV['NOS_OIGNONS_RECIEPTS_DIR'])
   Mail.defaults do
     delivery_method :test
   end
@@ -32,5 +35,6 @@ end
 After do
   ENV['NOS_OIGNONS_REMINDER_DB'] = @orig_reminder_db_path
   ENV['NOS_OIGNONS_BOARD_WIKI_PATH'] = @orig_wiki_path
+  ENV['NOS_OIGNONS_RECIEPTS_DIR'] = @orig_reciepts_dir
   FileUtils.remove_entry_secure @tmpdir
 end