[py-svn] r11453 - py/dist/py/documentation

hpk at codespeak.net hpk at codespeak.net
Tue Apr 26 12:21:46 CEST 2005


Author: hpk
Date: Tue Apr 26 12:21:46 2005
New Revision: 11453

Modified:
   py/dist/py/documentation/conftest.py
Log:
another rename to have nicer ReST related names 



Modified: py/dist/py/documentation/conftest.py
==============================================================================
--- py/dist/py/documentation/conftest.py	(original)
+++ py/dist/py/documentation/conftest.py	Tue Apr 26 12:21:46 2005
@@ -62,15 +62,14 @@
         return [self.fspath.basename, 'checklinks']
     def join(self, name): 
         if name == self.fspath.basename: 
-            return DocumentationItem(name, parent=self) 
+            return ReSTSyntaxTest(name, parent=self) 
         elif name == 'checklinks': 
             return LinkCheckerMaker(name, self) 
     
-class DocumentationItem(py.test.Item): 
+class ReSTSyntaxTest(py.test.Item): 
     def run(self): 
         mypath = self.fspath 
         restcheck(py.path.svnwc(mypath))
-        #linkcheck(mypath) 
 
 class LinkCheckerMaker(py.test.collect.Collector): 
     def run(self): 



More information about the pytest-commit mailing list