summaryrefslogtreecommitdiff
path: root/morphlib/cachedir_tests.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-09-29 14:21:29 +0100
committerLars Wirzenius <liw@liw.fi>2011-09-29 14:21:29 +0100
commitfebe4fdc0d1f1cfe902300b0b85bd990d88eef50 (patch)
treeaecf5bc830df44b0ee818e9bbc63e7d1f8631154 /morphlib/cachedir_tests.py
parenta2c4584418bf71c7f7ee04e333e8f53375104e63 (diff)
downloadmorph-febe4fdc0d1f1cfe902300b0b85bd990d88eef50.tar.gz
Add trivial CacheDir.
Diffstat (limited to 'morphlib/cachedir_tests.py')
-rw-r--r--morphlib/cachedir_tests.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/morphlib/cachedir_tests.py b/morphlib/cachedir_tests.py
new file mode 100644
index 00000000..2ceb01b6
--- /dev/null
+++ b/morphlib/cachedir_tests.py
@@ -0,0 +1,30 @@
+# Copyright (C) 2011 Codethink Limited
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+
+import unittest
+
+import morphlib
+
+
+class CacheDirTests(unittest.TestCase):
+
+ def setUp(self):
+ self.dirname = '/cache/dir'
+ self.cachedir = morphlib.cachedir.CacheDir(self.dirname)
+
+ def test_sets_dirname_attribute(self):
+ self.assertEqual(self.cachedir.dirname, self.dirname)
+