summaryrefslogtreecommitdiff
path: root/source4/lib/tdb/python/tests/simple.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2008-02-12 12:56:30 +1100
committerAndrew Tridgell <tridge@samba.org>2008-02-12 12:56:30 +1100
commitf7bcc15bf8acc157dde8a9895773a0dd03ca6cfb (patch)
tree0bf64d4b2b2183183062392c3f7fd713134af575 /source4/lib/tdb/python/tests/simple.py
parentccc27e681cbd6283513b929d58f2ebce35e6658b (diff)
parente84cd8d38bcb6756c5066c7c75f3220a15e5ad1b (diff)
downloadsamba-f7bcc15bf8acc157dde8a9895773a0dd03ca6cfb.tar.gz
samba-f7bcc15bf8acc157dde8a9895773a0dd03ca6cfb.tar.bz2
samba-f7bcc15bf8acc157dde8a9895773a0dd03ca6cfb.zip
Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-test
(This used to be commit 3beaa04ef73ca21925d41745b30b6bbaadb7b939)
Diffstat (limited to 'source4/lib/tdb/python/tests/simple.py')
-rw-r--r--source4/lib/tdb/python/tests/simple.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/lib/tdb/python/tests/simple.py b/source4/lib/tdb/python/tests/simple.py
index 1cc51aea07..94407b6398 100644
--- a/source4/lib/tdb/python/tests/simple.py
+++ b/source4/lib/tdb/python/tests/simple.py
@@ -142,3 +142,8 @@ class SimpleTdbTests(TestCase):
self.assertEquals(0, len(self.tdb))
self.tdb["entry"] = "value"
self.assertEquals(1, len(self.tdb))
+
+
+if __name__ == '__main__':
+ import unittest
+ unittest.TestProgram()