2017-07-09 08:02:30 +02:00
|
|
|
#!/bin/env bats
|
|
|
|
|
|
|
|
@test "Testing ytview tool" {
|
|
|
|
echo ytview
|
|
|
|
}
|
|
|
|
|
|
|
|
@test "Check for latest version of bash-snippets on update" {
|
2017-08-02 08:05:17 +02:00
|
|
|
if [[ "$(uname)" == "Linux" ]];then
|
2017-07-09 08:02:30 +02:00
|
|
|
run ytview update
|
|
|
|
[ "$output" = "Bash-Snippets is already the latest version" ]
|
2017-08-02 08:05:17 +02:00
|
|
|
fi
|
2017-07-09 08:02:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@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" ]
|
|
|
|
}
|