def test_reversed_points(self): cube1, cube2 = self.SetUpReversed() with self.assertRaises(ValueError): divide(cube1, cube2)
def test_no_match(self): cube1, cube2 = self.SetUpNonMatching() with self.assertRaises(ValueError): divide(cube1, cube2)