12 lines
253 B
Text
12 lines
253 B
Text
|
#!/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" ]
|
||
|
}
|