aboutsummaryrefslogtreecommitdiffstats
path: root/test/oni-scheme.bats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-01-07 16:27:27 -0800
committerGravatar Tom Willemse2020-01-07 16:27:27 -0800
commit487f25a7a6870ca78d7daeeccb7218ed4681a429 (patch)
tree23090472d88a8a418f76b89a32900d091132423e /test/oni-scheme.bats
parente91f599f13660a2d60831455f650aa44a3bfb508 (diff)
downloademacs-config-487f25a7a6870ca78d7daeeccb7218ed4681a429.tar.gz
emacs-config-487f25a7a6870ca78d7daeeccb7218ed4681a429.zip
Move bats tests to test/integration
Diffstat (limited to 'test/oni-scheme.bats')
-rw-r--r--test/oni-scheme.bats23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/oni-scheme.bats b/test/oni-scheme.bats
deleted file mode 100644
index acfa53d..0000000
--- a/test/oni-scheme.bats
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env bats
-
-@test "Opening a scheme 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" ]
-}