We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b0db18 commit 86247f8Copy full SHA for 86247f8
README.md
@@ -1,18 +1,18 @@
1
Testcontainers is a Haskell library that provides a friendly API to run Docker
2
-container. It is designed to create runtime environment to use during your automatic
3
-tests.
+containers. It is designed to create a runtime environment to use during your
+integration tests
4
5
``` haskell
6
module Main where
7
8
import Test.Tasty
9
import Test.Tasty.HUnit
10
-import TestContainer.Tasty (MonadDocker, defaultContainerRequest,
+import TestContainer.Tasty (MonadDocker, conainerRequest,
11
redis, run, withContainers)
12
13
containers :: MonadDocker m => m ()
14
containers = do
15
- _ <- run redis defaultContainerRequest
+ _ <- run $ containerRequest redis
16
pure ()
17
18
0 commit comments