mirror of
https://github.com/Xevion/exercism.git
synced 2025-12-09 06:07:06 -06:00
'init'
This commit is contained in:
14
python/hello-world/hello_world_test.py
Normal file
14
python/hello-world/hello_world_test.py
Normal file
@@ -0,0 +1,14 @@
|
||||
import unittest
|
||||
|
||||
import hello_world
|
||||
|
||||
|
||||
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.1.0
|
||||
|
||||
class HelloWorldTest(unittest.TestCase):
|
||||
def test_hello(self):
|
||||
self.assertEqual(hello_world.hello(), 'Hello, World!')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user