Skip to content
Snippets Groups Projects
Commit 8fb6cbe2 authored by Matthew K Defenderfer's avatar Matthew K Defenderfer
Browse files

change test command to reflect new package organization

parent b30af739
No related branches found
No related tags found
No related merge requests found
Pipeline #12066 failed with stages
in 5 minutes and 18 seconds
import unittest
from pak.hello import hello
import pak
class TestMyModule(unittest.TestCase):
def test_hello(self):
self.assertEqual(hello(), "Hello, World!")
self.assertEqual(pak.main(), "Hello, World!")
if __name__ == '__main__':
unittest.main()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment