|
@ -39,6 +39,9 @@ class fractions(unittest.TestCase): |
|
|
def test_divide_fractions_10_by_3_and_20_by_9_should_be_3_by_2(self): |
|
|
def test_divide_fractions_10_by_3_and_20_by_9_should_be_3_by_2(self): |
|
|
self.assertEqual(divideFractions(10,3,20,9), (3,2)) |
|
|
self.assertEqual(divideFractions(10,3,20,9), (3,2)) |
|
|
|
|
|
|
|
|
|
|
|
def test_fraction_2_by_5_to_string(self): |
|
|
|
|
|
self.assertEqual(fraction_to_string(2,5), "2 / 5") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
if __name__ == '__main__': |
|
|
unittest.main() |
|
|
unittest.main() |