48 lines
1.3 KiB
Bash
48 lines
1.3 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
@test "Opening emacs loads oni-ivy" {
|
|
run emacs -batch -l package -f package-initialize \
|
|
-eval "(prin1 (featurep 'oni-ivy))"
|
|
|
|
echo "$output"
|
|
|
|
[[ "$output" == *"t" ]]
|
|
}
|
|
|
|
@test "Opening emacs diminishes ivy-mode" {
|
|
run emacs -batch -l package -f package-initialize \
|
|
-eval "(prin1 (string-empty-p (car (alist-get 'ivy-mode minor-mode-alist))))"
|
|
|
|
echo "$output"
|
|
|
|
[[ "$output" == *"t" ]]
|
|
}
|
|
|
|
@test "Reloading ivy diminishes ivy-mode" {
|
|
run emacs -batch -l package -f package-initialize \
|
|
-eval "(load-library \"ivy\")" \
|
|
-eval "(prin1 (string-empty-p (car (alist-get 'ivy-mode minor-mode-alist))))"
|
|
|
|
echo "$output"
|
|
|
|
[[ "$output" == *"t" ]]
|
|
}
|
|
|
|
@test "Opening emacs diminishes ivy-posframe-mode" {
|
|
run emacs -batch -l package -f package-initialize \
|
|
-eval "(prin1 (string-empty-p (car (alist-get 'ivy-posframe-mode minor-mode-alist))))"
|
|
|
|
echo "$output"
|
|
|
|
[[ "$output" == *"t" ]]
|
|
}
|
|
|
|
@test "Reloading ivy-posframe diminishes ivy-posframe-mode" {
|
|
run emacs -batch -l package -f package-initialize \
|
|
-eval "(load-library \"ivy-posframe\")" \
|
|
-eval "(prin1 (string-empty-p (car (alist-get 'ivy-posframe-mode minor-mode-alist))))"
|
|
|
|
echo "$output"
|
|
|
|
[[ "$output" == *"t" ]]
|
|
}
|