mirror of
https://github.com/Xevion/exercism.git
synced 2026-01-31 08:24:14 -06:00
'init'
This commit is contained in:
@@ -0,0 +1 @@
|
||||
{"track":"python","exercise":"hello-world","id":"e926fb7c9400480a80f75e957fe1b027","url":"https://exercism.io/my/solutions/e926fb7c9400480a80f75e957fe1b027","handle":"Xevion","is_requester":true,"auto_approve":true}
|
||||
@@ -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