diff options
author | Nikos Giotis <nikos.giotis@gmail.com> | 2017-03-06 22:40:07 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-03-11 07:03:43 +0700 |
commit | a9cb9b4062c60375d414699ebde7b6108f60e38c (patch) | |
tree | 02ad8741facdf433930369cdec568012159806ba /python/fixtures/README | |
parent | 5dffdc8e956dacef46cb437c27ee6c68cf97339d (diff) | |
download | slackbuilds-a9cb9b4062c60375d414699ebde7b6108f60e38c.tar.gz |
python/fixtures: Added (Fixtures package for python).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/fixtures/README')
-rw-r--r-- | python/fixtures/README | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/python/fixtures/README b/python/fixtures/README new file mode 100644 index 0000000000..f2be43458a --- /dev/null +++ b/python/fixtures/README @@ -0,0 +1,11 @@ +Fixtures, reusable state for writing clean tests and more. + +Fixtures defines a Python contract for reusable state / support logic, +primarily for unit testing. Helper and adaption logic is included to make +it easy to write your own fixtures using the fixtures contract. Glue code +is provided that makes using fixtures that meet the Fixtures contract in +unittest compatible test cases easy and straight forward. + +Note: +There is a cyclic dependency between testtools package and fixtures package. +Since these are python libraries, one has to just install both of them. |