diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests.py b/tests.py new file mode 100644 index 0000000..43ded0a --- /dev/null +++ b/tests.py @@ -0,0 +1,13 @@ +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()