Skip to content

Commit

Permalink
Runonce batch script
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-werner committed Dec 5, 2016
1 parent 134d025 commit 6856749
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,4 @@ build_script:

test_script:
- "py.test"
- "tests\\runonce.bat"
25 changes: 25 additions & 0 deletions tests/runonce.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
START "" zput -vv -q -t 10 LICENSE
zget -vv -q -t 10 LICENSE /dev/null

START "" zput -vv -q -t 10 -a 127.0.0.1 LICENSE
zget -vv -q -t 10 LICENSE /dev/null

START "" zput -vv -q -t 10 -p 8808 LICENSE
zget -vv -q -t 10 LICENSE /dev/null

START "" zput -q -t 10 LICENSE
zget -q -t 10 LICENSE /dev/null

START "" zput -t 10 LICENSE
zget -t 10 LICENSE /dev/null

START "" zput -vv -q -t 10 "tests/filename with spaces"
zget -vv -q -t 10 "filename with spaces" /dev/null

# Transfer alias, requesting file
START "" zput -vv -q -t 10 LICENSE asd
zget -vv -q -t 10 LICENSE /dev/null

# Transfer alias, requesting alias
START "" zput -vv -q -t 10 LICENSE asd
zget -vv -q -t 10 asd /dev/null

0 comments on commit 6856749

Please sign in to comment.