Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

# tstr: your ultimate testing library

tstr is testing library allows you to write integration and black-box tests like normal unit tests in Go.
tstr allows you to write application, integration and black-box tests like normal unit tests in Go.

You can declare the test dependencies like:
With tstr you can easily declare the test dependencies like:

- compose files
- single containers
Expand Down Expand Up @@ -201,3 +201,7 @@ func (c *Custom) Ready() error { return nil }

func (c *Custom) Stop() error { return nil }
```

## Acknowledgements

This library is based on the work originally done as part of (https://github.com/elisasre/go-common)[https://github.com/elisasre/go-common] and was extracted to it's own repo to be more approachable by users.