Ejemplo n.º 1
0
 def test_bigger_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 21)
Ejemplo n.º 2
0
 def test_non_nullable_column(self):
     with raises(AssertionError):
         assert_nullable(self.user, 'age')
Ejemplo n.º 3
0
 def test_smaller_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 19)
Ejemplo n.º 4
0
 def test_matching_exception(self):
     with raises(Exception):
         raise Exception()
     assert True
Ejemplo n.º 5
0
 def test_non_matchin_exception(self):
     with pytest.raises(Exception):
         with raises(ValueError):
             raise Exception()
Ejemplo n.º 6
0
 def test_bigger_than_max_value(self):
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 151)
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 151)
Ejemplo n.º 7
0
 def test_bigger_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'fav_numbers', 9)
     with raises(AssertionError):
         assert_max_length(self.user, 'fav_numbers', 9)
Ejemplo n.º 8
0
 def test_non_nullable_column(self):
     with raises(AssertionError):
         assert_nullable(self.user, 'age')
     with raises(AssertionError):
         assert_nullable(self.user, 'age')
Ejemplo n.º 9
0
 def test_smaller_than_max_value(self):
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 149)
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 149)
Ejemplo n.º 10
0
 def test_non_matchin_exception(self):
     with pytest.raises(Exception):
         with raises(ValueError):
             raise Exception()
Ejemplo n.º 11
0
 def test_bigger_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'fav_numbers', 9)
     with raises(AssertionError):
         assert_max_length(self.user, 'fav_numbers', 9)
Ejemplo n.º 12
0
 def test_bigger_than_max_value(self):
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 151)
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 151)
Ejemplo n.º 13
0
 def test_smaller_than_max_value(self):
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 149)
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 149)
Ejemplo n.º 14
0
 def test_matching_exception(self):
     with raises(Exception):
         raise Exception()
     assert True
Ejemplo n.º 15
0
 def test_bigger_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 21)
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 21)
Ejemplo n.º 16
0
 def test_smaller_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 19)
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 19)