Create unit tests #3

Merged
tormakris merged 9 commits from testing into master 2020-03-31 21:49:57 +02:00
2 changed files with 22 additions and 1 deletions
Showing only changes of commit 40db3cd26e - Show all commits

View File

@ -1,2 +1,3 @@
sentry_sdk sentry_sdk
requests requests
pytest

20
test.py Normal file
View File

@ -0,0 +1,20 @@
#!/usr/bin/env python
import pytest
"""
Unit tests for producer module.
"""
__author__ = "@tormakris"
__copyright__ = "Copyright 2020, GoldenPogácsa Team"
__module_name__ = "test"
__version__text__ = "1"
class MyTestCase(unittest.TestCase):
def test_something(self):
self.assertEqual(True, False)
if __name__ == '__main__':
unittest.main()