Ejemplo n.º 1
0
 def test_smaller_than_max_value(self):
     with pytest.raises(AssertionError):
         assert_max_value(self.user, 'age', 149)
     with pytest.raises(AssertionError):
         assert_max_value(self.user, 'age', 149)
Ejemplo n.º 2
0
 def test_bigger_than_max_value(self):
     with pytest.raises(AssertionError):
         assert_max_value(self.user, 'age', 151)
     with pytest.raises(AssertionError):
         assert_max_value(self.user, 'age', 151)
Ejemplo n.º 3
0
 def test_with_min_value(self):
     assert_max_value(self.user, 'age', 150)
     assert_max_value(self.user, 'age', 150)