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

12 lines
245 B
Text
Raw Normal View History

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