Bootstrap SMC

This commit is contained in:
Luke Murphy
2020-06-30 01:53:17 +02:00
commit fda8aa0229
14 changed files with 855 additions and 0 deletions

0
test/__init__.py Normal file
View File

10
test/test_version.py Normal file
View File

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