예제 #1
0
 def test_bigger_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 21)
예제 #2
0
 def test_non_nullable_column(self):
     with raises(AssertionError):
         assert_nullable(self.user, 'age')
예제 #3
0
 def test_smaller_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 19)
예제 #4
0
 def test_matching_exception(self):
     with raises(Exception):
         raise Exception()
     assert True
예제 #5
0
 def test_non_matchin_exception(self):
     with pytest.raises(Exception):
         with raises(ValueError):
             raise Exception()
예제 #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)
예제 #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)
예제 #8
0
 def test_non_nullable_column(self):
     with raises(AssertionError):
         assert_nullable(self.user, 'age')
     with raises(AssertionError):
         assert_nullable(self.user, 'age')
예제 #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)
예제 #10
0
 def test_non_matchin_exception(self):
     with pytest.raises(Exception):
         with raises(ValueError):
             raise Exception()
예제 #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)
예제 #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)
예제 #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)
예제 #14
0
 def test_matching_exception(self):
     with raises(Exception):
         raise Exception()
     assert True
예제 #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)
예제 #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)