From 6c1dbcf4c3baac3fcb45e2d3049460212c78e0eb Mon Sep 17 00:00:00 2001 From: zaans2 Date: Mon, 26 Jun 2017 00:44:51 +0200 Subject: [PATCH] Addition of my feature --- numerals/features/liamdehaas.feature | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 numerals/features/liamdehaas.feature diff --git a/numerals/features/liamdehaas.feature b/numerals/features/liamdehaas.feature new file mode 100644 index 0000000..e8af38d --- /dev/null +++ b/numerals/features/liamdehaas.feature @@ -0,0 +1,11 @@ +Feature: Numerals should be converted to written english form. + + Scenario: Display number 1 in written english form ("one"). + Given the input "1" + When the converter is run + Then the output should be "one" + + Scenario: Display number 14 in written english form ("fourteen"). + Given the input "14" + When the converter is run + Then the output should be "fourteen"