Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 492 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 492 Bytes

Using test fixtures

In this recipe we demonstrate how to employ test fixtures. These are useful for more sophisticated tests that require setup actions before the test is run, and cleanup actions after it has completed (such as creating an example database, setting up a connection, disconnecting, cleaning up the test database, and so on).

This recipe is inspired by the blog post by Craig Scott.