mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 11:48:13 +01:00
13 lines
201 B
Bash
13 lines
201 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
test() {
|
||
|
|
echo "Test: $1"
|
||
|
|
eval "PYTHONPATH=. python -m asciinema.__main__ $2 >/dev/null || (echo 'failed' && exit 1)"
|
||
|
|
}
|
||
|
|
|
||
|
|
test "help" "-h"
|
||
|
|
test "version" "-v"
|
||
|
|
test "auth" "auth"
|