1
0
Fork 0
emacs-config/test/integration/oni-smartparens.bats

11 lines
253 B
Bash

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