10 lines
232 B
Text
10 lines
232 B
Text
|
#!/usr/bin/env bats
|
||
|
|
||
|
@test "Loading an AHK file loads oni-autohotkey" {
|
||
|
run emacs -batch -l package -f package-initialize \
|
||
|
-visit test.ahk \
|
||
|
-eval "(prin1 (featurep 'oni-autohotkey))"
|
||
|
|
||
|
[ "$output" = "t" ]
|
||
|
}
|