testing/py3-hypothesis: new aport

This commit is contained in:
Jean-Louis Fuchs 2017-09-18 19:43:18 +02:00 committed by Leonardo Arena
parent f428844e1d
commit 4839df83e3
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,29 @@
# Contributor: Jean-Louis Fuchs <ganwell@fangorn.ch>
# Maintainer: Jean-Louis Fuchs <ganwell@fangorn.ch>
pkgname=py3-hypothesis
pkgver=3.28.3
pkgrel=0
pkgdesc="Hypothesis is an advanced testing library for Python"
url="http://hypothesis.works/"
arch="noarch"
license="MPL"
depends="python3 py3-attrs"
makedepends="python3-dev py3-pytest"
source="py3-hypothesis-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz"
builddir="$srcdir/hypothesis-python-$pkgver"
build() {
cd "$builddir"
python3 setup.py build
}
check() {
PYTHONPATH="$builddir/src" pytest-3 check.py
}
package() {
cd "$builddir"
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="402f116c215af4b57f9702b6af716f0b43a0dd8ee75dc609a0c430fb516dccbab57b438a58590259b25e1bbefaae05dfb28eec80242c599864bc352b98b269b5 py3-hypothesis-3.28.3.tar.gz"

View File

@ -0,0 +1,6 @@
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