summaryrefslogtreecommitdiff
path: root/lib/sexp/tests.py
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2008-11-23 04:31:53 +0000
committerNick Mathewson <nickm@torproject.org>2008-11-23 04:31:53 +0000
commitd19ceed522d80d0b3dba446933a5b9316dc48c0b (patch)
treecc6fbde2bc2432b3a3e591a96f803198668c1b63 /lib/sexp/tests.py
parent7f3418fcd091da3fb5cdc11c4820b43bb90d2d20 (diff)
Okay, so I'll admit that my vision of a future where all the world is an s-expression is probably no more than a figment of my imagination. Someday, though, somebody will want to parse spki in python, and they will sure be glad that svn preserves deleted files.
git-svn-id: file:///home/or/svnrepo/updater/trunk@17371 55e972cd-5a19-0410-ae62-a4d7a52db4cd
Diffstat (limited to 'lib/sexp/tests.py')
-rw-r--r--lib/sexp/tests.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/sexp/tests.py b/lib/sexp/tests.py
deleted file mode 100644
index bfd1053..0000000
--- a/lib/sexp/tests.py
+++ /dev/null
@@ -1,30 +0,0 @@
-
-import unittest
-import doctest
-
-import sexp.parse
-import sexp.access
-import sexp.encode
-
-class EncodingTest(unittest.TestCase):
- def testQuotedString(self):
- self.assertEquals(1,1)
-
-
-def suite():
- import sexp.tests
- suite = unittest.TestSuite()
-
- suite.addTest(doctest.DocTestSuite(sexp.encode))
- suite.addTest(doctest.DocTestSuite(sexp.parse))
- suite.addTest(doctest.DocTestSuite(sexp.access))
-
- loader = unittest.TestLoader()
- suite.addTest(loader.loadTestsFromModule(sexp.tests))
-
- return suite
-
-
-if __name__ == '__main__':
-
- unittest.TextTestRunner(verbosity=1).run(suite())