summaryrefslogtreecommitdiff
path: root/docs/testing.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/testing.md')
-rw-r--r--docs/testing.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/testing.md b/docs/testing.md
index c6f3654..8e87568 100644
--- a/docs/testing.md
+++ b/docs/testing.md
@@ -4,11 +4,11 @@ Run `cargo test`.
Most of the tests for this project use an integration-based testing approach:
-* Spin up a scratch copy of the application, using an in-memory database;
-* Perform operations against that database using the `app` abstraction to set up the scenario;
-* Interact with route endpoint functions directly to perform the test;
-* Inspect both the return values from the endpoint function to validate the results; and
-* Perform additional operations against the scratch database using the `app` absraction to validate behaviour.
+- Spin up a scratch copy of the application, using an in-memory database;
+- Perform operations against that database using the `app` abstraction to set up the scenario;
+- Interact with route endpoint functions directly to perform the test;
+- Inspect both the return values from the endpoint function to validate the results; and
+- Perform additional operations against the scratch database using the `app` absraction to validate behaviour.
Tests can vary around this theme.