python-drone-test/tests.py
Bentozox 15e238615d
All checks were successful
continuous-integration/drone/push Build is passing
test5 that should success
2022-10-18 09:36:54 +02:00

14 lines
258 B
Python

import unittest
from main import is_hello_world
class TestProject(unittest.TestCase):
def test_when_text_is_hello_world_with_maj_then_work(self):
self.assertTrue(is_hello_world("Hello world"))
if __name__ == '__main__':
unittest.main()