aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-01-14 22:02:08 -0800
committerGravatar Tom Willemse2020-01-14 22:02:08 -0800
commite77c57b9984e15087cc718f54ab9a6ef70ec06f0 (patch)
treec642c5dc604ff4aec690851979f43c1978aa38db /test
parent08e73f9cac39d5e33d5137210bbea15c821560d9 (diff)
downloademacs-config-e77c57b9984e15087cc718f54ab9a6ef70ec06f0.tar.gz
emacs-config-e77c57b9984e15087cc718f54ab9a6ef70ec06f0.zip
Add ‘smartparens’ to ‘oni-sh’
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" ]
+}