summaryrefslogtreecommitdiff
path: root/examples/echo/echo.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/echo/echo.yaml')
-rw-r--r--examples/echo/echo.yaml20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/echo/echo.yaml b/examples/echo/echo.yaml
new file mode 100644
index 0000000..7be6e96
--- /dev/null
+++ b/examples/echo/echo.yaml
@@ -0,0 +1,20 @@
+- when: user runs echo without arguments
+ function: run_echo_without_args
+
+- when: user runs echo with arguments (?P<args>.+)
+ function: run_echo_with_args
+ regex: true
+
+- then: exit code is (?P<exit_code>\d+)
+ function: exit_code_is
+ regex: true
+
+- then: standard output contains a newline
+ function: stdout_is_a_newline
+
+- then: standard output contains "(?P<text>.*)"
+ function: stdout_is_text
+ regex: true
+
+- then: standard error is empty
+ function: stderr_is_empty