aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/tools/py/testing/path/svntestbase.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/web-platform-tests/tools/py/testing/path/svntestbase.py')
-rw-r--r--tests/wpt/web-platform-tests/tools/py/testing/path/svntestbase.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/wpt/web-platform-tests/tools/py/testing/path/svntestbase.py b/tests/wpt/web-platform-tests/tools/py/testing/path/svntestbase.py
deleted file mode 100644
index 8d94a9ca649..00000000000
--- a/tests/wpt/web-platform-tests/tools/py/testing/path/svntestbase.py
+++ /dev/null
@@ -1,31 +0,0 @@
-import sys
-import py
-from py._path import svnwc as svncommon
-from common import CommonFSTests
-
-class CommonSvnTests(CommonFSTests):
-
- def test_propget(self, path1):
- url = path1.join("samplefile")
- value = url.propget('svn:eol-style')
- assert value == 'native'
-
- def test_proplist(self, path1):
- url = path1.join("samplefile")
- res = url.proplist()
- assert res['svn:eol-style'] == 'native'
-
- def test_info(self, path1):
- url = path1.join("samplefile")
- res = url.info()
- assert res.size > len("samplefile") and res.created_rev >= 0
-
- def test_log_simple(self, path1):
- url = path1.join("samplefile")
- logentries = url.log()
- for logentry in logentries:
- assert logentry.rev == 1
- assert hasattr(logentry, 'author')
- assert hasattr(logentry, 'date')
-
-#cache.repositories.put(svnrepourl, 1200, 0)