Fix a test
This commit is contained in:
parent
18a63cd2eb
commit
c4c2ef8979
@ -17,6 +17,6 @@ test $(sqlite3 data/twitter.db "select count(*) from users") = "1"
|
|||||||
# Fetch a tweet with images
|
# Fetch a tweet with images
|
||||||
go run ./twitter fetch_tweet_only data https://twitter.com/Denlesks/status/1261483383483293700
|
go run ./twitter fetch_tweet_only data https://twitter.com/Denlesks/status/1261483383483293700
|
||||||
test $(sqlite3 data/twitter.db "select count(*) from tweets") = "1"
|
test $(sqlite3 data/twitter.db "select count(*) from tweets") = "1"
|
||||||
test $(sqlite3 data/twitter.db "select text from tweets") = "These are public health officials who are making decisions about your lifestyle because they know more about health, fitness and well-being than you do"
|
test "$(sqlite3 data/twitter.db "select text from tweets")" = "These are public health officials who are making decisions about your lifestyle because they know more about health, fitness and well-being than you do"
|
||||||
go run ./twitter fetch_tweet_only data https://twitter.com/Denlesks/status/1261483383483293700
|
go run ./twitter fetch_tweet_only data https://twitter.com/Denlesks/status/1261483383483293700
|
||||||
test $(sqlite3 data/twitter.db "select count(*) from tweets") = "1"
|
test $(sqlite3 data/twitter.db "select count(*) from tweets") = "1"
|
||||||
|
@ -32,10 +32,10 @@ TARGET is optional depending on <operation>
|
|||||||
*/
|
*/
|
||||||
func die(text string, display_help bool, exit_code int) {
|
func die(text string, display_help bool, exit_code int) {
|
||||||
if text != "" {
|
if text != "" {
|
||||||
fmt.Print(terminal_utils.COLOR_RED + text + terminal_utils.COLOR_RESET + "\n")
|
fmt.Fprint(os.Stderr, terminal_utils.COLOR_RED + text + terminal_utils.COLOR_RESET + "\n")
|
||||||
}
|
}
|
||||||
if display_help {
|
if display_help {
|
||||||
fmt.Print(help_message)
|
fmt.Fprint(os.Stderr, help_message)
|
||||||
}
|
}
|
||||||
os.Exit(exit_code)
|
os.Exit(exit_code)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user