summaryrefslogtreecommitdiff
path: root/echo.yaml
blob: 6937d3d8e0c4b6fd87ba33d7a8e7ca18d4f9efde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- when: user runs echo without arguments
  function: run_echo_without_args

- when: user runs echo with arguments (?P<args>.+)
  function: run_echo_with_args

- then: exit code is (?P<exit_code>\d+)
  function: exit_code_is_zero

- then: standard output contains a newline
  function: stdout_is_a_newline

- then: standard output contains "(?P<text>.*)"
  function: stdout_is_text

- then: standard error is empty
  function: stderr_is_empty