1
0
Fork 0
emacs-config/test/integration/oni-scheme.bats

24 lines
546 B
Text
Raw Normal View History

#!/usr/bin/env bats
@test "Opening a .scm file loads oni-scheme" {
run emacs -batch -l package -f package-initialize \
-visit test.scm \
-eval "(prin1 (featurep 'oni-scheme))"
[ "$output" = "t" ]
}
@test "Opening a file with the SCSH interpreter loads scheme-mode" {
filename="$(mktemp)"
echo "#!/usr/bin/scsh -s" > "$filename"
run emacs -batch -l package -f package-initialize \
-visit "$filename" \
-eval "(prin1 major-mode)"
rm "$filename"
[ "$output" = "scheme-mode" ]
}