import unittest from pak.hello import hello class TestMyModule(unittest.TestCase): def test_hello(self): self.assertEqual(hello(), "Hello, World!") if __name__ == '__main__': unittest.main()