mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 03:04:06 +00:00
12 lines
180 B
Bash
Executable File
12 lines
180 B
Bash
Executable File
#!/usr/bin/env bats
|
|
|
|
setup() {
|
|
export DOTFILES="$PWD"
|
|
}
|
|
|
|
@test "dfm help shows usage" {
|
|
run bash local/bin/dfm help
|
|
[ "$status" -eq 0 ]
|
|
[[ "$output" == *"Usage: dfm"* ]]
|
|
}
|