summaryrefslogtreecommitdiff
path: root/ewww.md
diff options
context:
space:
mode:
Diffstat (limited to 'ewww.md')
-rw-r--r--ewww.md15
1 files changed, 12 insertions, 3 deletions
diff --git a/ewww.md b/ewww.md
index e00b4e5..a604232 100644
--- a/ewww.md
+++ b/ewww.md
@@ -85,9 +85,17 @@ for static content only. Every other method returns an error.
# Acceptance criteria
-## Smoke test
+## Minimal smoke test
~~~scenario
+given a running server using config file minimal.yaml
+when I request GET http://example.com/
+then I get status code 200
+~~~
+
+## Not really a smoke test
+
+~~~scenario-disabled
given a self-signed certificate as snakeoil.pem, using key snakeoil.key
and a running server using config file smoke.yaml
@@ -130,7 +138,7 @@ tlskey: snakeoil.key
## Performance test
-~~~scenario
+~~~scenario-disabled
given a self-signed certificate as snakeoil.pem, using key snakeoil.key
and a running server using config file smoke.yaml
and 1000 files in webroot
@@ -140,7 +148,7 @@ then I can do at least 100 requests per second
## Using POST, PUT, or DELETE fails
-~~~scenario
+~~~scenario-disabled
given a self-signed certificate as snakeoil.pem, using key snakeoil.key
and a running server using config file smoke.yaml
@@ -162,4 +170,5 @@ and allow is "GET HEAD"
title: "Ewww — a Web server for static sites"
author: Lars Wirzenius
bindings: ewww.yaml
+functions: ewww.py
...