1 from nose.tools import *
2 import wiki.models as models
9 self.dirpath = tempfile.mkdtemp(prefix='nosetest_')
12 shutil.rmtree(self.dirpath)
15 class TestDocumentStorage(TestStorageBase):
17 def test_storage_empty(self):
18 storage = models.DocumentStorage(self.dirpath)
19 eq_(storage.all(), [])