Import python modules by their hash.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

10 řádky
208 B

  1. def hello(name):
  2. return 'hello %s' % name
  3. import unittest
  4. class Tests(unittest.TestCase):
  5. def test_hello(self):
  6. self.assertEqual(hello('sam'), 'hello sam')
  7. self.assertEqual(hello('bob'), 'hello bob')