예제 #1
0
 def test_exists_empty_fail(self, dao: InMemoryDao):
     dao.clear()
     assert not dao.all().exists()
예제 #2
0
파일: test_dao.py 프로젝트: lhaze/dharma
 def test_exists_empty_fail(self, dao: InMemoryDao):
     dao.clear()
     assert not dao.all().exists()
예제 #3
0
 def test_clear(self, dao: InMemoryDao):
     dao.clear()
     assert list(dao.all()) == []
예제 #4
0
파일: test_dao.py 프로젝트: lhaze/dharma
 def test_clear(self, dao: InMemoryDao):
     dao.clear()
     assert list(dao.all()) == []