aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-hypothesis/check.py
diff options
context:
space:
mode:
authorJean-Louis Fuchs <ganwell@fangorn.ch>2017-12-25 00:00:37 +0100
committerNatanael Copa <ncopa@alpinelinux.org>2017-12-26 11:45:53 +0000
commitdac21535559575c800cad79280a231e559162cda (patch)
tree0c539dca2e0449b20acafd0130a3d4b196d05eb1 /testing/py3-hypothesis/check.py
parent66dad3c936ed7965770b140c69f18ada4c69efe9 (diff)
downloadaports-dac21535559575c800cad79280a231e559162cda.tar.bz2
aports-dac21535559575c800cad79280a231e559162cda.tar.xz
unmaintained/py3-hypothesis: move from testing
They release about twice a week, we can't keep up with this.
Diffstat (limited to 'testing/py3-hypothesis/check.py')
-rw-r--r--testing/py3-hypothesis/check.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/testing/py3-hypothesis/check.py b/testing/py3-hypothesis/check.py
deleted file mode 100644
index 1250548c7d..0000000000
--- a/testing/py3-hypothesis/check.py
+++ /dev/null
@@ -1,6 +0,0 @@
-from hypothesis import given
-from hypothesis.strategies import text
-
-@given(s=text())
-def test_decode_inverts_encode(s):
- assert s.encode("UTF").decode("UTF-8") == s