Roll out the new boilerplate

This commit is contained in:
Luke Murphy
2019-08-07 08:31:30 +02:00
commit f43cf4fa52
30 changed files with 1333 additions and 0 deletions

0
test/__init__.py Normal file
View File

9
test/test_version.py Normal file
View File

@ -0,0 +1,9 @@
"""Version test module."""
def test_version_fails_gracefully(mocker):
target = 'pkg_resources.get_distribution'
with mocker.patch(target, side_effect=Exception()):
from hypercore_crypto.__init__ import __version__
assert __version__ == 'unknown'