Import python modules by their hash.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- def hello(name):
- return 'hello %s' % name
-
- import unittest
-
- class Tests(unittest.TestCase):
- def test_hello(self):
- self.assertEqual(hello('sam'), 'hello sam')
- self.assertEqual(hello('bob'), 'hello bob')
|