예제 #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)
예제 #2
0
 def test_first_argument_validity(self):
     assert mod(VALUE_ERROR, 1) == VALUE_ERROR
     assert mod('x', 1) == VALUE_ERROR
예제 #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
예제 #4
0
 def test_second_argument_validity(self):
     with self.assertRaises(TypeError):
         mod(2, 1.1)
예제 #5
0
 def test_output_value(self):
     self.assertEqual(mod(10, 4), 2)
예제 #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)
예제 #7
0
 def test_first_argument_validity(self):
     with self.assertRaises(TypeError):
         mod(2.2, 1)
예제 #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
예제 #9
0
 def test_first_argument_validity(self):
     assert mod(VALUE_ERROR, 1) == VALUE_ERROR
     assert mod('x', 1) == VALUE_ERROR
예제 #10
0
 def test_output_value(self):
     self.assertEqual(mod(10, 4), 2)
예제 #11
0
 def test_second_argument_validity(self):
     with self.assertRaises(TypeError):
         mod(2, 1.1)
예제 #12
0
 def test_first_argument_validity(self):
     with self.assertRaises(TypeError):
         mod(2.2, 1)