From 61b65a32b6fb385ca78ac0226d633581cf4866a9 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 1 Jun 2019 21:04:33 +0300 Subject: Add: echo.md and echo.yaml These will be used as test data for code generation. --- echo.md | 25 +++++++++++++++++++++++++ echo.yaml | 4 ++++ 2 files changed, 29 insertions(+) create mode 100644 echo.md create mode 100644 echo.yaml diff --git a/echo.md b/echo.md new file mode 100644 index 0000000..f9bd88d --- /dev/null +++ b/echo.md @@ -0,0 +1,25 @@ +--- +title: "**echo**(1) acceptance tests" +author: Lars Wirzenius / The Fable project +... + +Introduction +============================================================================= + +**echo**(1) is a Unix command line tool, which writes its command line +arguments to the standard output. This is a simple acceptance test +suite for the `/bin/echo` implementation. + +No arguments +============================================================================= + +This scenario runs `/bin/echo` without arguments and checks that it +outputs a single newline character to the standard output, nothing to +the standard error, and exits with a zero exit code. + +```fable +when user runs echo without arguments +then exit code is 0 +and standard output contains a newline +and standard error is empty +``` diff --git a/echo.yaml b/echo.yaml new file mode 100644 index 0000000..773c192 --- /dev/null +++ b/echo.yaml @@ -0,0 +1,4 @@ +- when: user runs echo without arguments +- then: exit code is 0 +- then: standard output contains a newline +- then: standard error is empty -- cgit v1.2.1