]> nos-oignons.net Git - gestion-adh.git/blob - features/step_definitions/commands.rb
Start implementing update-ag-subscribers
[gestion-adh.git] / features / step_definitions / commands.rb
1 #-*- coding: utf-8 -*-
2
3 When /^j'exécute list\-emails$/ do
4   run_simple 'list-emails'
5 end
6
7 When /^j'exécute update-ag-subscribers$/ do
8   run_simple 'update-ag-subscribers'
9 end
10
11 Then /^je ne dois pas avoir eu d'erreur$/ do
12   assert_exit_status(0)
13 end
14
15 Then /^je dois voir comme erreur "(.*?)"$/ do |expected|
16   assert_failing_with(expected)
17 end
18
19 Then /^la sortie doit être vide$/ do
20   assert_exact_output('', all_stdout)
21 end
22
23 Then /^la sortie doit être:$/ do |expected|
24   # add an extra line feed for nice scenario
25   assert_exact_output(expected + "\n", all_stdout)
26 end