Beispiel #1
0
 def test_45(self):
     expected = THREE_FIVE_STR
     result = _three_five_threefive_or_value(45)
     self.assertEqual(expected, result)
Beispiel #2
0
 def test_float_15(self):
     expected = float(15)
     result = _three_five_threefive_or_value(float(15))
     self.assertEqual(expected, result)
Beispiel #3
0
 def test_17(self):
     expected = 17
     result = _three_five_threefive_or_value(17)
     self.assertEqual(expected, result)
Beispiel #4
0
 def test_negative_5(self):
     expected = FIVE_STR
     result = _three_five_threefive_or_value(-5)
     self.assertEqual(expected, result)
Beispiel #5
0
 def test_negative_13(self):
     expected = -13
     result = _three_five_threefive_or_value(-13)
     self.assertEqual(expected, result)
Beispiel #6
0
 def test_negative_3_float(self):
     expected = float(-3)
     result = _three_five_threefive_or_value(float(-3))
     self.assertEqual(expected, result)
Beispiel #7
0
 def test_negative_3(self):
     expected = THREE_STR
     result = _three_five_threefive_or_value(-3)
     self.assertEqual(expected, result)
Beispiel #8
0
 def test_12(self):
     expected = THREE_STR
     result = _three_five_threefive_or_value(12)
     self.assertEqual(expected, result)
Beispiel #9
0
 def test_zero(self):
     expected = 0
     result = _three_five_threefive_or_value(0)
     self.assertEqual(expected, result)
Beispiel #10
0
 def test_89(self):
     expected = 89
     result = _three_five_threefive_or_value(89)
     self.assertEqual(expected, result)