12 lines
238 B
Text
12 lines
238 B
Text
|
#!/usr/bin/env bats
|
||
|
|
||
|
@test "Opening a .cpp file loads oni-c++" {
|
||
|
run emacs -batch -l package -f package-initialize \
|
||
|
-visit test.cpp \
|
||
|
-eval "(prin1 (featurep 'oni-c++))"
|
||
|
|
||
|
echo "$output"
|
||
|
|
||
|
[ "$output" = "t" ]
|
||
|
}
|