-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
134d025
commit 6856749
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,3 +88,4 @@ build_script: | |
|
||
test_script: | ||
- "py.test" | ||
- "tests\\runonce.bat" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |