2020-01-14 03:13:16 +01:00
|
|
|
#!/usr/bin/env bats
|
|
|
|
|
2020-01-15 06:22:44 +01:00
|
|
|
@test "Opening a .cpp file loads oni-cpp" {
|
2020-01-14 03:13:16 +01:00
|
|
|
run emacs -batch -l package -f package-initialize \
|
|
|
|
-visit test.cpp \
|
2020-01-14 17:11:50 +01:00
|
|
|
-eval "(prin1 (featurep 'oni-cpp))"
|
2020-01-14 03:13:16 +01:00
|
|
|
|
|
|
|
echo "$output"
|
|
|
|
|
2020-01-15 06:22:44 +01:00
|
|
|
[[ "$output" == *"t" ]]
|
2020-01-14 03:13:16 +01:00
|
|
|
}
|