X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/3e1aff21cb6131f52bc4ef17187af665b31654a8..05124c8c30a67c005eac475a262c6e3c61473590:/apps/wiki/tests.py diff --git a/apps/wiki/tests.py b/apps/wiki/tests.py index 4262d208..91eccc8a 100644 --- a/apps/wiki/tests.py +++ b/apps/wiki/tests.py @@ -1,12 +1,20 @@ -import unittest +from nose.tools import * import wiki.models as models +import shutil, tempfile -class TestDocument(unittest.TestCase): - +class TestStorageBase: def setUp(self): - models.storage = None + self.dirpath = tempfile.mkdtemp(prefix = 'nosetest_') + + def tearDown(self): + shutil.rmtree(self.dirpath) + +class TestDocumentStorage(TestStorageBase): + + def test_storage_empty(self): + storage = models.DocumentStorage(self.dirpath) + eq_(storage.all(), []) - def