Files
clrtrust/test/unrecognized-cmd.bats
2018-02-27 15:50:00 -08:00

21 lines
283 B
Bash
Executable File

#!/usr/bin/env bats
# Copyright 2017 Intel Corporation
load test_lib
setup() {
find_clrtrust
setup_fs
}
@test "handle unrecognized command" {
run $CLRTRUST regenerate
[ $status -ne 0 ]
}
teardown() {
remove_fs
}
# vim: ft=sh:sw=4:ts=4:et:tw=80:si:noai:nocin