tests: add test for logs:help

This commit is contained in:
Jose Diaz-Gonzalez
2021-01-07 00:14:43 -05:00
parent 4bbee232d8
commit 2eae6c25af

19
tests/unit/logs.bats Normal file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bats
load test_helper
setup() {
global_setup
}
teardown() {
destroy_app
global_teardown
}
@test "(network) logs:help" {
run /bin/bash -c "dokku logs:help"
echo "output: $output"
echo "status: $status"
assert_output_contains "Manage log integration for an app"
}