diff options
author | Loïc Hoguin <[email protected]> | 2018-06-04 12:59:26 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2018-06-04 12:59:26 +0200 |
commit | 2b588340af501825f3ab03f2e76dba0353c98fae (patch) | |
tree | ad990a44d67f30e9804b606e0282ca9adfa37433 /docs/en/erlang.mk/1/guide/triq.asciidoc | |
parent | 791b95225695b3badff7cc4bb4f0f1ed373c74de (diff) | |
download | ninenines.eu-2b588340af501825f3ab03f2e76dba0353c98fae.tar.gz ninenines.eu-2b588340af501825f3ab03f2e76dba0353c98fae.tar.bz2 ninenines.eu-2b588340af501825f3ab03f2e76dba0353c98fae.zip |
Update documentation for Gun 1.0
Diffstat (limited to 'docs/en/erlang.mk/1/guide/triq.asciidoc')
-rw-r--r-- | docs/en/erlang.mk/1/guide/triq.asciidoc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/en/erlang.mk/1/guide/triq.asciidoc b/docs/en/erlang.mk/1/guide/triq.asciidoc new file mode 100644 index 00000000..db698600 --- /dev/null +++ b/docs/en/erlang.mk/1/guide/triq.asciidoc @@ -0,0 +1,31 @@ +[[triq]] +== Triq + +https://triq.gitlab.io/[Triq] is a QuickCheck-like library for +property-based testing. Erlang.mk automates discovery and checking of +Triq properties. + +To run all tests (including Triq): + +[source,bash] +$ make tests + +To run all tests and static checks (including Triq): + +[source,bash] +$ make check + +You can also run Triq separately: + +[source,bash] +$ make triq + +To check properties from a single module: + +[source,bash] +$ make triq t=foo_tests + +To check a single property: + +[source,bash] +$ make triq t=foo_tests:bar |