Sha256: 7f99e599e5757b38961ec5a9b73f9a1697177694cb5dd790b99906f1e767a6ed
Contents?: true
Size: 295 Bytes
Versions: 60
Compression:
Stored size: 295 Bytes
Contents
import unittest import hello_world # Tests adapted from `problem-specifications//canonical-data.json` @ v1.0.0 class HelloWorldTests(unittest.TestCase): def test_hello(self): self.assertEqual(hello_world.hello(), 'Hello, World!') if __name__ == '__main__': unittest.main()
Version data entries
60 entries across 60 versions & 1 rubygems