2
0
mirror of https://github.com/alexanderepstein/Bash-Snippets synced 2018-11-08 02:59:35 +01:00
Bash-Snippets/tests/stocks.bats
Navan Chauhan 0b291d241a Fixes meme snippet + Fixes Failing Builds (#169)
* Update .travis.yml

* Update cheat.bats

* Update cheat.bats

* Update .travis.yml

* Update .travis.yml

* Update taste.bats

* Update stocks.bats

* Update .travis.yml

* Update .travis.yml

* Update taste.bats

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

* Update meme
2018-07-28 21:00:42 -04:00

44 lines
969 B
Bash
Executable File

#!/bin/env bats
@test "Testing stocks tool" {
echo stocks
}
@test "Check for latest version of bash-snippets on update" {
if [[ "$(uname)" == "Linux" ]];then
run stocks update
[ "$status" -eq 0 ]
[ "$output" = "Bash-Snippets is already the latest version" ]
fi
}
@test "The -h option should print usage" {
run stocks -h
[ "$status" -eq 0 ]
[ "${lines[0]}" = "Stocks" ]
}
@test "No arguments prints usage instructions" {
run stocks
[ "$status" -eq 0 ]
[ "${lines[0]}" = "Stocks" ]
}
@test "Get stock info by passing in ticker" {
result=$( echo $(stocks AAPL) | grep -Eo "AAPL stock info" )
[ "$result" = "AAPL stock info" ]
}
@test "Get stock info by passing in company" {
result=$( echo $(stocks Apple) | grep -Eo "AAPL stock info" )
[ "$result" = "AAPL stock info" ]
}
@test "Get the tools version with -v" {
run stocks -v
[ "$status" -eq 0 ]
result=$( echo $(stocks -v) | grep -Eo "Version")
[ "$result" = "Version" ]
}