2017-07-28 02:59:46 +02:00
|
|
|
#!/bin/env bats
|
|
|
|
|
|
|
|
@test "Testing cryptocurrency tool" {
|
|
|
|
echo cryptocurrency
|
|
|
|
}
|
|
|
|
|
|
|
|
@test "Check for latest version of bash-snippets on update" {
|
2017-08-02 08:05:17 +02:00
|
|
|
if [[ "$(uname)" == "Linux" ]];then
|
2017-07-28 02:59:46 +02:00
|
|
|
run cryptocurrency update
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ "$output" = "Bash-Snippets is already the latest version" ]
|
2017-08-02 08:05:17 +02:00
|
|
|
fi
|
2017-07-28 02:59:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@test "The -h option should print usage" {
|
|
|
|
run cryptocurrency -h
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ "${lines[0]}" = "CryptoCurrency" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
@test "Testing cryptocurrency exchange (12.35 BTC TO USD)" {
|
|
|
|
run cryptocurrency BTC USD 12.35
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
[ "${lines[0]}" = "=========================" ]
|
|
|
|
[ "${lines[3]}" = "| BTC: 12.35" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
@test "Get the tools version with -v" {
|
|
|
|
run cryptocurrency -v
|
|
|
|
[ "$status" -eq 0 ]
|
|
|
|
result=$( echo $(cryptocurrency -v) | grep -Eo "Version")
|
|
|
|
[ "$result" = "Version" ]
|
|
|
|
}
|