From 15b9b937786220a2169146c21a501b54039f53a3 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 26 Jul 2020 09:49:46 +0300 Subject: refactor: "when I create" to "given file" --- ewww.md | 4 ++-- ewww.yaml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ewww.md b/ewww.md index 1536483..6ccafe1 100644 --- a/ewww.md +++ b/ewww.md @@ -89,8 +89,8 @@ for static content only. Every other method returns an error. ~~~scenario given a self-signed certificate as snakeoil.pem, using key snakeoil.key -when I create webroot/foo.html with "this is your web page" -given a running server using config file smoke.yaml +and file webroot/foo.html with "this is your web page" +and a running server using config file smoke.yaml when I request GET https://example.com/foo.html then I get status code 200 and header content-type is "text/html" diff --git a/ewww.yaml b/ewww.yaml index 08a13e4..375558d 100644 --- a/ewww.yaml +++ b/ewww.yaml @@ -8,6 +8,10 @@ - given: "{count} files in {dirname}" function: fixme +- given: file (?P\S+) with "(?P.*)" + regex: true + function: create_file + - then: I am redirected to {location} function: fixme @@ -25,10 +29,6 @@ regex: true function: http_body_is -- when: I create (?P\S+) with "(?P.*)" - regex: true - function: create_file - - when: I request {method} {url} function: request -- cgit v1.2.1