1
0
Fork 0
emacs-config/test/integration/oni-org-roam.bats
Tom Willemse dd9fedf8ff Decouple ‘oni-org’ and ‘oni-org-roam’
‘org-roam’ doesn’t seem to work correctly on all the machines that I use
‘org-mode’ on.
2021-03-25 20:20:04 -07:00

11 lines
250 B
Bash
Executable file

#!/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" ]]
}