[py-svn] r28041 - py/dist/py/path/svn/testing

jan at codespeak.net jan at codespeak.net
Thu Jun 1 00:47:23 CEST 2006


Author: jan
Date: Thu Jun  1 00:47:21 2006
New Revision: 28041

Modified:
   py/dist/py/path/svn/testing/svntestbase.py
   py/dist/py/path/svn/testing/test_wccommand.py
Log:
added tests for escaping svnwc names/currently disabled

Modified: py/dist/py/path/svn/testing/svntestbase.py
==============================================================================
--- py/dist/py/path/svn/testing/svntestbase.py	(original)
+++ py/dist/py/path/svn/testing/svntestbase.py	Thu Jun  1 00:47:21 2006
@@ -11,7 +11,6 @@
 # cache previously obtained wcs!
 #
 def getrepowc():
-    #repo = py.test.ensuretemp('repo$*hehe') 
     repo = py.test.ensuretemp('repo')
     wcdir = py.test.ensuretemp('wc') 
     if not repo.listdir():

Modified: py/dist/py/path/svn/testing/test_wccommand.py
==============================================================================
--- py/dist/py/path/svn/testing/test_wccommand.py	(original)
+++ py/dist/py/path/svn/testing/test_wccommand.py	Thu Jun  1 00:47:21 2006
@@ -6,6 +6,14 @@
 except py.error.ENOENT:
     py.test.skip("cannot test py.path.svn, 'svn' binary not found")
 
+class disable_TestWCSvnCommandPathEscapeString(CommonSvnTests):
+
+    def setup_class(cls):
+        escape_string = 'df01c67e48$dc4d5b00$7f0aa8c0 at codespeak.net'
+        root = py.test.ensuretemp(escape_string)
+        cls.root = py.path.svnwc(root)
+
+
 class TestWCSvnCommandPath(CommonSvnTests):
 
     def setup_class(cls): 



More information about the pytest-commit mailing list