aboutsummaryrefslogtreecommitdiffstats
path: root/test/integration/oni-ivy.bats
blob: 050ac5e2ed878759c013c684bb8895a6dd05b358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env bats

@test "Loading ivy loads oni-ivy" {
    run emacs -batch -l package -f package-initialize \
        -l ivy \
        -eval "(prin1 (featurep 'oni-ivy))"

    echo "$output"

    [[ "$output" == *"t" ]]
}

@test "Loading ivy diminishes ivy-mode" {
    run emacs -batch -l package -f package-initialize -l subr-x \
        -l ivy \
        -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 -l subr-x \
        -l ivy \
        -eval "(load-library \"ivy\")" \
        -eval "(prin1 (string-empty-p (car (alist-get 'ivy-mode minor-mode-alist))))"

    echo "$output"

    [[ "$output" == *"t" ]]
}

@test "Loading ivy-posframe diminishes ivy-posframe-mode" {
    run emacs -batch -l package -f package-initialize -l subr-x \
        -l ivy-posframe \
        -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 -l subr-x \
        -l ivy-posframe \
        -eval "(load-library \"ivy-posframe\")" \
        -eval "(prin1 (string-empty-p (car (alist-get 'ivy-posframe-mode minor-mode-alist))))"

    echo "$output"

    [[ "$output" == *"t" ]]
}