aboutsummaryrefslogtreecommitdiffstats
path: root/test/integration/oni-smartparens.bats
blob: 019e0f079633842c921dbf247cf34a64f07d38db (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" ]
}