-from nose.tools import *
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
import wiki.models as models
import shutil
import tempfile
class TestStorageBase:
def setUp(self):
- self.dirpath = tempfile.mkdtemp(prefix='nosetest_')
+ self.dirpath = tempfile.mkdtemp(prefix='redakcja_test_')
def tearDown(self):
shutil.rmtree(self.dirpath)
def test_storage_empty(self):
storage = models.DocumentStorage(self.dirpath)
- eq_(storage.all(), [])
+ self.assertEqual(storage.all(), [])