22 lines
471 B
Text
22 lines
471 B
Text
|
#!/usr/bin/env bats
|
||
|
|
||
|
@test "Opening a .cs file loads oni-csharp" {
|
||
|
run emacs -batch -l package -f package-initialize \
|
||
|
-visit test.cs \
|
||
|
-eval "(prin1 (featurep 'oni-csharp))"
|
||
|
|
||
|
echo "$output"
|
||
|
|
||
|
[[ "$output" == *"t" ]]
|
||
|
}
|
||
|
|
||
|
@test "Opening a .xaml file loads nxml-mode" {
|
||
|
run emacs -batch -l package -f package-initialize \
|
||
|
-visit test.xaml \
|
||
|
-eval "(prin1 major-mode)"
|
||
|
|
||
|
echo "$output"
|
||
|
|
||
|
[[ "$output" == *"nxml-mode" ]]
|
||
|
}
|