[Python-checkins] python/dist/src/Lib/test test_whichdb.py,1.3,1.4

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Thu, 22 Aug 2002 13:22:18 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv5436

Modified Files:
	test_whichdb.py 
Log Message:
Standardize behavior: no docstrings in test functions.


Index: test_whichdb.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_whichdb.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** test_whichdb.py	9 Aug 2002 16:37:36 -0000	1.3
--- test_whichdb.py	22 Aug 2002 20:22:16 -0000	1.4
***************
*** 43,50 ****
          continue
  
!     def test_whichdb_name(self,name=name,mod=mod):
!         """Check whether whichdb correctly guesses module name
!         for databases opened with module mod.
!         """
          f = mod.open(_fname, 'c')
          f["1"] = "1"
--- 43,49 ----
          continue
  
!     def test_whichdb_name(self, name=name, mod=mod):
!         # Check whether whichdb correctly guesses module name
!         # for databases opened with module mod.
          f = mod.open(_fname, 'c')
          f["1"] = "1"