11 lines
253 B
Bash
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" ]
|
|
}
|