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

@test "Opening a .conf file loads oni-conf" {
    run emacs -batch -l package -f package-initialize \
        -visit test.conf \
        -eval "(prin1 (featurep 'oni-conf))"

    echo "$output"

    [ "$output" = "t" ]
}