diff options
author | Barry Warsaw <barry@python.org> | 2002-12-30 20:44:16 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-12-30 20:44:16 (GMT) |
commit | 74859f3aa63698364a9062d6f49fb223eead1dd7 (patch) | |
tree | 33e1cfa2baad5482da6df7eb06fafe1aac21bf43 /Lib/bsddb | |
parent | 9bdeee492a6676a63559dcdeee4c62fbaeb0f3e6 (diff) | |
download | cpython-74859f3aa63698364a9062d6f49fb223eead1dd7.zip cpython-74859f3aa63698364a9062d6f49fb223eead1dd7.tar.gz cpython-74859f3aa63698364a9062d6f49fb223eead1dd7.tar.bz2 |
Template for future tests.
Diffstat (limited to 'Lib/bsddb')
-rw-r--r-- | Lib/bsddb/test/test_join.py | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/Lib/bsddb/test/test_join.py b/Lib/bsddb/test/test_join.py index 00ccd36..ab75ba1 100644 --- a/Lib/bsddb/test/test_join.py +++ b/Lib/bsddb/test/test_join.py @@ -1,12 +1,9 @@ -""" -TestCases for using the DB.join and DBCursor.join_item methods. +"""TestCases for using the DB.join and DBCursor.join_item methods. """ -import sys, os, string -import tempfile -from pprint import pprint import unittest -from bsddb import db -from test.test_support import verbose +def test_suite(): + suite = unittest.TestSuite() + return suite |