diff options
| author | 2020-01-13 18:02:41 -0800 | |
|---|---|---|
| committer | 2020-01-13 18:02:41 -0800 | |
| commit | dbf4798b1a8098cde361f107950244ac58c086ff (patch) | |
| tree | 6082dc88319195944d43ce8fbcd9cd9604025e25 /test | |
| parent | 28e10b8e893bec387e1feec42784151ff032b058 (diff) | |
| download | emacs-config-dbf4798b1a8098cde361f107950244ac58c086ff.tar.gz emacs-config-dbf4798b1a8098cde361f107950244ac58c086ff.zip | |
Add integration test for oni-browse-url
Diffstat (limited to 'test')
| -rw-r--r-- | test/integration/oni-browse-url.bats | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/integration/oni-browse-url.bats b/test/integration/oni-browse-url.bats new file mode 100644 index 0000000..74aa6ad --- /dev/null +++ b/test/integration/oni-browse-url.bats @@ -0,0 +1,11 @@ +#!/usr/bin/env bats + +@test "Loading browse-url loads oni-browse-url" { + run emacs -batch -l package -f package-initialize \ + -l browse-url \ + -eval "(prin1 (featurep 'oni-browse-url))" + + echo "$output" + + [ "$output" = "t" ] +} |
