Exemplo n.º 1
0
 def test_inc_return(self):
     '''
     Test that it can sum two integers
     '''
     result = toys.inc_return(9)
     self.assertEqual(result, 10)
Exemplo n.º 2
0
 def test_inc(self):
     '''
     Test that it can increment an integer
     '''
     result = toys.inc_return(10)
     self.assertEqual(result, 11)