]> nos-oignons.net Git - gestion-adh.git/blob - features/step_definitions/commands.rb
Refactor in modules and classes
[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 Then /^je ne dois pas avoir eu d'erreur$/ do
8   assert_exit_status(0)
9 end
10
11 Then /^je dois voir comme erreur "(.*?)"$/ do |expected|
12   assert_failing_with(expected)
13 end
14
15 Then /^la sortie doit être vide$/ do
16   assert_exact_output('', all_stdout)
17 end
18
19 Then /^la sortie doit être:$/ do |expected|
20   # add an extra line feed for nice scenario
21   assert_exact_output(expected + "\n", all_stdout)
22 end