13 lines
186 B
Bash
13 lines
186 B
Bash
#!/usr/bin/env bash
|
|
|
|
setup() {
|
|
load "$PWD/tests/integration/helpers/common"
|
|
_common_setup
|
|
}
|
|
|
|
@test "abra version" {
|
|
run $ABRA -v
|
|
assert_success
|
|
assert_output --partial 'dev'
|
|
}
|