py-aiounittest: added version 1.3.1
The aiounittest is a helper library to ease of your pain (and boilerplate), when writing a test of the asynchronous code (asyncio). You can test: * synchronous code (same as the unittest.TestCase) * asynchronous code, it supports syntax with async/await (Python 3.5+) and asyncio.coroutine/yield from (Python 3.4)
This commit is contained in:
parent
8ec17a6d2c
commit
13a07884a2
5 changed files with 49 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.3133 2020/05/23 07:03:41 adam Exp $
|
||||
# $NetBSD: Makefile,v 1.3134 2020/05/23 08:19:22 adam Exp $
|
||||
#
|
||||
|
||||
COMMENT= Development utilities
|
||||
|
@ -2123,6 +2123,7 @@ SUBDIR+= py-ZopeTestrunner
|
|||
SUBDIR+= py-absl-py
|
||||
SUBDIR+= py-adb
|
||||
SUBDIR+= py-aiofiles
|
||||
SUBDIR+= py-aiounittest
|
||||
SUBDIR+= py-angr
|
||||
SUBDIR+= py-anytree
|
||||
SUBDIR+= py-apipkg
|
||||
|
|
5
devel/py-aiounittest/DESCR
Normal file
5
devel/py-aiounittest/DESCR
Normal file
|
@ -0,0 +1,5 @@
|
|||
The aiounittest is a helper library to ease of your pain (and boilerplate),
|
||||
when writing a test of the asynchronous code (asyncio). You can test:
|
||||
* synchronous code (same as the unittest.TestCase)
|
||||
* asynchronous code, it supports syntax with async/await (Python 3.5+) and
|
||||
asyncio.coroutine/yield from (Python 3.4)
|
18
devel/py-aiounittest/Makefile
Normal file
18
devel/py-aiounittest/Makefile
Normal file
|
@ -0,0 +1,18 @@
|
|||
# $NetBSD: Makefile,v 1.1 2020/05/23 08:19:22 adam Exp $
|
||||
|
||||
DISTNAME= aiounittest-1.3.1
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= ${MASTER_SITE_PYPI:=a/aiounittest/}
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
HOMEPAGE= https://github.com/kwarunek/aiounittest
|
||||
COMMENT= Test asyncio code more easily
|
||||
LICENSE= mit
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
||||
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
18
devel/py-aiounittest/PLIST
Normal file
18
devel/py-aiounittest/PLIST
Normal file
|
@ -0,0 +1,18 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2020/05/23 08:19:22 adam Exp $
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
${PYSITELIB}/aiounittest/__init__.py
|
||||
${PYSITELIB}/aiounittest/__init__.pyc
|
||||
${PYSITELIB}/aiounittest/__init__.pyo
|
||||
${PYSITELIB}/aiounittest/case.py
|
||||
${PYSITELIB}/aiounittest/case.pyc
|
||||
${PYSITELIB}/aiounittest/case.pyo
|
||||
${PYSITELIB}/aiounittest/helpers.py
|
||||
${PYSITELIB}/aiounittest/helpers.pyc
|
||||
${PYSITELIB}/aiounittest/helpers.pyo
|
||||
${PYSITELIB}/aiounittest/mock.py
|
||||
${PYSITELIB}/aiounittest/mock.pyc
|
||||
${PYSITELIB}/aiounittest/mock.pyo
|
||||
${PYSITELIB}/aiounittest/py.typed
|
6
devel/py-aiounittest/distinfo
Normal file
6
devel/py-aiounittest/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2020/05/23 08:19:22 adam Exp $
|
||||
|
||||
SHA1 (aiounittest-1.3.1.tar.gz) = df452c33d5e0b237b90a94aabba2ef28c9aaa957
|
||||
RMD160 (aiounittest-1.3.1.tar.gz) = d5e09e641b582b659d83c93d8f30c11ac8f807a7
|
||||
SHA512 (aiounittest-1.3.1.tar.gz) = 66eb2a15badc52c13b84bb3671b0ba2d6b9493bf5dc13ba13c8d2c3f627733c105aeab54139fbd5c1cd22391b2fdd09b019f5acee746486696b02be5f87c35a3
|
||||
Size (aiounittest-1.3.1.tar.gz) = 5419 bytes
|
Loading…
Reference in a new issue