aboutsummaryrefslogtreecommitdiff
path: root/tests/strategies.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/strategies.py')
-rw-r--r--tests/strategies.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/strategies.py b/tests/strategies.py
deleted file mode 100644
index ccda362..0000000
--- a/tests/strategies.py
+++ /dev/null
@@ -1,8 +0,0 @@
-"""Module holding custom data generation strategies"""
-
-from hypothesis.strategies import characters, composite
-
-@composite
-def average_numbers_string(draw):
- num = draw(floats(allow_nan=False, allow_infinity=False,))
- return f"{num:.3f}"