2020-01-14 22:02:08 -08: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"
|
|
|
|
|
2021-02-24 21:14:49 -08:00
|
|
|
[[ "$output" == *"t" ]]
|
2020-01-14 22:02:08 -08:00
|
|
|
}
|