python-drone-test/tests.py
Bentozox 2bf081c0fc
Some checks failed
continuous-integration/drone/push Build is failing
test2 that should fail
2022-10-10 11:33:35 +02:00

14 lines
264 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 NOOOO"))
if __name__ == '__main__':
unittest.main()