def test_unsafe(self): with pytest.raises(ValueError): utils.update_safety_check(self.x, self.z)
def test_safe(self): # should not raise exception: utils.update_safety_check(self.x, self.y)
def test_unsafe(self): with self.assertRaises(ValueError): utils.update_safety_check(self.x, self.z)