Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exend svn and add cvs test #73

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions TESTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,14 @@ Identical to git_dir issue, just with Subversion instead of Git.
* [svnscaper - script to download .svn directories](https://github.com/hannob/svnscraper)


svn_db
-------

Identical to git_dir issue, just with Subversion instead of Git.

* [Version Control with subversion](https://www.oreilly.com/library/view/version-control-with/9780596510336/ch08s02s01.html)


apache_server_status
--------------------

Expand Down
7 changes: 7 additions & 0 deletions snallygaster
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,13 @@ def test_svn_dir(url):
pass


@DEFAULT
def test_svn_db(url):
r = fetcher(url + '/.svn/wc.db')
if 'FILE' in r and 'DIR' in r:
pout("svn_db", url + "/.svb/wc.db")


@DEFAULT
def test_apache_server_status(url):
r = fetcher(url + '/server-status')
Expand Down