This commit is contained in:
Xevion
2019-07-13 04:18:06 -05:00
parent d558cf2d6c
commit 266e06add5
29 changed files with 656 additions and 1 deletions

View 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()