def test_input_is_b(self):
     result = f('b')
     self.assertEqual('the input is b', result)
 def test_input_is_a(self):
     result = f('a')
     self.assertEqual('the input is a', result)
 def test_input_is_c(self):
     result = f('c')
     self.assertEqual('the input is c', result)
예제 #4
0
 def test_input_is_b(self):
     result = f('b')
     self.assertEqual('the input is b', result)
예제 #5
0
 def test_input_is_a(self):
     result = f('a')
     self.assertEqual('the input is a', result)
예제 #6
0
 def test_input_is_c(self):
     result = f('c')
     self.assertEqual('the input is c', result)