summaryrefslogtreecommitdiffstats
path: root/python/fixtures/README
diff options
context:
space:
mode:
author Nikos Giotis2017-03-06 16:40:07 +0100
committer Willy Sudiarto Raharjo2017-03-11 01:03:43 +0100
commita9cb9b4062c60375d414699ebde7b6108f60e38c (patch)
tree02ad8741facdf433930369cdec568012159806ba /python/fixtures/README
parent5dffdc8e956dacef46cb437c27ee6c68cf97339d (diff)
downloadslackbuilds-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/README11
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.