X-Git-Url: https://nos-oignons.net/gitweb/gestion-adh.git/blobdiff_plain/4a99ae87e0f7fdd07d8820a724fbed1d8b2b5f36..9abd734720ddad01338b0556ed6210bac5c5b145:/features/step_definitions/commands.rb diff --git a/features/step_definitions/commands.rb b/features/step_definitions/commands.rb index 685aa15..26886e6 100644 --- a/features/step_definitions/commands.rb +++ b/features/step_definitions/commands.rb @@ -4,6 +4,19 @@ When /^j'exécute list\-emails$/ do run_simple 'list-emails' end +When /^j'exécute list-emails le (\d+)\-(\d+)\-(\d+)$/ do |year, month, day|$/ + Timecop.travel(Time.new(year, month, day)) do + stdout_io = StringIO.new + begin + $stdout = stdout_io + NosOignons.list_emails! + @stdout = stdout_io.string + ensure + $stdout = STDOUT + end + end +end + When /^j'exécute update-ag-subscribers$/ do run_simple 'update-ag-subscribers' end @@ -17,10 +30,14 @@ Then /^je dois voir comme erreur "(.*?)"$/ do |expected| end Then /^la sortie doit être vide$/ do - assert_exact_output('', all_stdout) + assert_exact_output('', @stdout || all_stdout) end Then /^la sortie doit être:$/ do |expected| # add an extra line feed for nice scenario - assert_exact_output(expected + "\n", all_stdout) + assert_exact_output(expected + "\n", @stdout || all_stdout) +end + +Then /^la sortie doit être "([^"]*)"$/ do |expected| + assert_exact_output(expected, (@stdout || all_stdout).rstrip) end