mirror of
https://github.com/alexanderepstein/Bash-Snippets
synced 2018-11-08 02:59:35 +01:00
27 lines
547 B
Text
27 lines
547 B
Text
|
#!/bin/env bats
|
||
|
|
||
|
@test "Testing ytview tool" {
|
||
|
echo ytview
|
||
|
}
|
||
|
|
||
|
@test "Check for latest version of bash-snippets on update" {
|
||
|
run ytview update
|
||
|
[ "$output" = "Bash-Snippets is already the latest version" ]
|
||
|
}
|
||
|
|
||
|
@test "The -h option should print usage" {
|
||
|
run ytview -h
|
||
|
[ "${lines[0]}" = "Ytview" ]
|
||
|
}
|
||
|
|
||
|
@test "No arguments prints usage instructions" {
|
||
|
run ytview
|
||
|
[ "$status" -eq 0 ]
|
||
|
[ "${lines[0]}" = "Ytview" ]
|
||
|
}
|
||
|
|
||
|
@test "Get the tools version with -v" {
|
||
|
result=$( echo $(ytview -v) | grep -Eo "Version")
|
||
|
[ "$result" = "Version" ]
|
||
|
}
|