Exemple #1
0
 def test_dao_filter_by_both_arguments_error(self, dao: InMemoryDao):
     with pytest.raises(QueryError):
         assert dao.filter_by(id_=3, ids=[3, 5])
Exemple #2
0
 def test_dao_filter_by_two_times_error(self, dao: InMemoryDao):
     with pytest.raises(QueryError):
         assert dao.filter_by(id_=3).filter_by(id_=5)
Exemple #3
0
 def test_dao_filter_by_success(self, dao: InMemoryDao):
     assert list(dao.filter_by(id_=3)) == [{'char': 'c', 'is_a': False}]
Exemple #4
0
 def test_dao_filter_by_two_times_error(self, dao: InMemoryDao):
     with pytest.raises(QueryError):
         assert dao.filter_by(id_=3).filter_by(id_=5)
Exemple #5
0
 def test_dao_filter_by_both_arguments_error(self, dao: InMemoryDao):
     with pytest.raises(QueryError):
         assert dao.filter_by(id_=3, ids=[3, 5])
Exemple #6
0
 def test_dao_filter_by_success(self, dao: InMemoryDao):
     assert list(dao.filter_by(id_=3)) == [{'char': 'c', 'is_a': False}]
Exemple #7
0
 def test_dao_filter_by_success(self, dao: InMemoryDao):
     assert list(dao.filter_by(id_=3)) == [{"char": "c", "is_a": False}]