1
0
Fork 0

Add test loading oni-autohotkey

This commit is contained in:
Tom Willemse 2020-01-07 21:33:56 -08:00
parent 5ea266270d
commit a2a474d87a

View file

@ -0,0 +1,9 @@
#!/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" ]
}