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

12 lines
253 B
Text
Raw Normal View History

2020-01-15 07:02:08 +01:00
#!/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" ]
}