simple-python-pyinstaller-app/sources/test_webapp.py
kudlaty 2a7b665d52 feature/kjug
bad test
2018-03-22 18:43:07 +01:00

15 lines
375 B
Python

from webapp import app
import unittest
class BasicTestCase(unittest.TestCase):
def test_index(self):
tester = app.test_client(self)
response = tester.get('/', content_type='html/text')
self.assertEqual(response.status_code, 200)
self.assertEqual(response.data, b'Hello, World!kdsjflsd')
if __name__ == '__main__':
unittest.main()