aboutsummaryrefslogtreecommitdiffstats
path: root/test/integration/oni-smartparens.bats
blob: e31e96eb3223b95d018fa530213fd4ac062f1752 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bats

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

    echo "$output"

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