예제 #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])
예제 #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)
예제 #3
0
 def test_dao_filter_by_success(self, dao: InMemoryDao):
     assert list(dao.filter_by(id_=3)) == [{'char': 'c', 'is_a': False}]
예제 #4
0
파일: test_dao.py 프로젝트: lhaze/dharma
 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)
예제 #5
0
파일: test_dao.py 프로젝트: lhaze/dharma
 def test_dao_filter_by_both_arguments_error(self, dao: InMemoryDao):
     with pytest.raises(QueryError):
         assert dao.filter_by(id_=3, ids=[3, 5])
예제 #6
0
파일: test_dao.py 프로젝트: lhaze/dharma
 def test_dao_filter_by_success(self, dao: InMemoryDao):
     assert list(dao.filter_by(id_=3)) == [{'char': 'c', 'is_a': False}]
예제 #7
0
 def test_dao_filter_by_success(self, dao: InMemoryDao):
     assert list(dao.filter_by(id_=3)) == [{"char": "c", "is_a": False}]