aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/integration/oni-smartparens.bats11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/integration/oni-smartparens.bats b/test/integration/oni-smartparens.bats
new file mode 100644
index 0000000..019e0f0
--- /dev/null
+++ b/test/integration/oni-smartparens.bats
@@ -0,0 +1,11 @@
+#!/usr/bin/env bats
+
+@test "Loading smartparens loads oni-smartparens" {
+ run emacs -batch -l package -f package-initialize \
+ -l smartparens \
+ -eval "(prin1 (featurep 'oni-smartparens))"
+
+ echo "$output"
+
+ [ "$output" = "t" ]
+}