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