11 lines
245 B
Bash
11 lines
245 B
Bash
#!/usr/bin/env bats
|
|
|
|
@test "Loading prescient loads oni-prescient" {
|
|
run emacs -batch -l package -f package-initialize \
|
|
-l prescient \
|
|
-eval "(prin1 (featurep 'oni-prescient))"
|
|
|
|
echo "$output"
|
|
|
|
[ "$output" = "t" ]
|
|
}
|