Skip to content
Snippets Groups Projects
test_hello.py 208 B
Newer Older
from pak.hello import hello

class TestMyModule(unittest.TestCase):
    def test_hello(self):
        self.assertEqual(hello(), "Hello, World!")

if __name__ == '__main__':
    unittest.main()