Beispiel #1
0
 def test_output_value(self):
     assert 2 == mod(10, 4)
     assert mod(2.2, 1) == pytest.approx(0.2)
     assert mod(2, 1.1) == pytest.approx(0.9)
Beispiel #2
0
 def test_first_argument_validity(self):
     assert mod(VALUE_ERROR, 1) == VALUE_ERROR
     assert mod('x', 1) == VALUE_ERROR
Beispiel #3
0
 def test_second_argument_validity(self):
     assert mod(2, VALUE_ERROR) == VALUE_ERROR
     assert mod(2, 'x') == VALUE_ERROR
     assert mod(2, 0) == DIV0
     assert mod(2, None) == DIV0
Beispiel #4
0
 def test_second_argument_validity(self):
     with self.assertRaises(TypeError):
         mod(2, 1.1)
Beispiel #5
0
 def test_output_value(self):
     self.assertEqual(mod(10, 4), 2)
Beispiel #6
0
 def test_output_value(self):
     assert 2 == mod(10, 4)
     assert mod(2.2, 1) == pytest.approx(0.2)
     assert mod(2, 1.1) == pytest.approx(0.9)
Beispiel #7
0
 def test_first_argument_validity(self):
     with self.assertRaises(TypeError):
         mod(2.2, 1)
Beispiel #8
0
 def test_second_argument_validity(self):
     assert mod(2, VALUE_ERROR) == VALUE_ERROR
     assert mod(2, 'x') == VALUE_ERROR
     assert mod(2, 0) == DIV0
     assert mod(2, None) == DIV0
Beispiel #9
0
 def test_first_argument_validity(self):
     assert mod(VALUE_ERROR, 1) == VALUE_ERROR
     assert mod('x', 1) == VALUE_ERROR
Beispiel #10
0
 def test_output_value(self):
     self.assertEqual(mod(10, 4), 2)
Beispiel #11
0
 def test_second_argument_validity(self):
     with self.assertRaises(TypeError):
         mod(2, 1.1)
Beispiel #12
0
 def test_first_argument_validity(self):
     with self.assertRaises(TypeError):
         mod(2.2, 1)