summaryrefslogtreecommitdiff
path: root/summainlib_tests.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2010-01-01 02:56:16 +0200
committerLars Wirzenius <liw@liw.fi>2010-01-01 02:56:16 +0200
commit96f9c72e35c9a496d1ad439518e7072591b3ec92 (patch)
tree2175d392d8f62d6326f067c05a38d907972ebbfa /summainlib_tests.py
parent3a5fc4f3da2165faf615b96b16b40bfc2a330281 (diff)
downloadsummain-96f9c72e35c9a496d1ad439518e7072591b3ec92.tar.gz
Implement st_uid formatting. With unit test.
Diffstat (limited to 'summainlib_tests.py')
-rw-r--r--summainlib_tests.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/summainlib_tests.py b/summainlib_tests.py
index 2eb3119..7f5a9fd 100644
--- a/summainlib_tests.py
+++ b/summainlib_tests.py
@@ -35,7 +35,8 @@ class FilesystemObjectTests(unittest.TestCase):
st_ino=12765,
st_dev=42,
st_nlink=2,
- st_size=1)
+ st_size=1,
+ st_uid=0)
def new(self, name):
return summainlib.FilesystemObject(name, stat_result=self.st)
@@ -65,3 +66,6 @@ class FilesystemObjectTests(unittest.TestCase):
def test_formats_size_correctly(self):
self.assertEqual(self.new('foo')['Size'], '1')
+ def test_formats_uid_correctly(self):
+ self.assertEqual(self.new('foo')['Uid'], '0')
+