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