[Python-checkins] python/dist/src/Lib/bsddb/test test_join.py,1.2,1.3

bwarsaw@users.sourceforge.net bwarsaw@users.sourceforge.net
Mon, 30 Dec 2002 12:44:18 -0800


Update of /cvsroot/python/python/dist/src/Lib/bsddb/test
In directory sc8-pr-cvs1:/tmp/cvs-serv28658

Modified Files:
	test_join.py 
Log Message:
Template for future tests.


Index: test_join.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/bsddb/test/test_join.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** test_join.py	24 Nov 2002 02:35:34 -0000	1.2
--- test_join.py	30 Dec 2002 20:44:16 -0000	1.3
***************
*** 1,12 ****
! """
! 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
--- 1,9 ----
! """TestCases for using the DB.join and DBCursor.join_item methods.
  """
  
  import unittest
  
  
! def test_suite():
!     suite = unittest.TestSuite()
!     return suite