Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Biehl committed Aug 6, 2020
1 parent 5b0db18 commit 86247f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
Testcontainers is a Haskell library that provides a friendly API to run Docker
container. It is designed to create runtime environment to use during your automatic
tests.
containers. It is designed to create a runtime environment to use during your
integration tests

``` haskell
module Main where

import Test.Tasty
import Test.Tasty.HUnit
import TestContainer.Tasty (MonadDocker, defaultContainerRequest,
import TestContainer.Tasty (MonadDocker, conainerRequest,
redis, run, withContainers)

containers :: MonadDocker m => m ()
containers = do
_ <- run redis defaultContainerRequest
_ <- run $ containerRequest redis
pure ()


Expand Down

0 comments on commit 86247f8

Please sign in to comment.