diff options
| author | 2019-05-05 20:06:34 -0700 | |
|---|---|---|
| committer | 2019-05-05 20:06:34 -0700 | |
| commit | 03e41db24adf849755f296c740003e809febd489 (patch) | |
| tree | d5428e8565fa154f094d956d398f1cd606d42b5d | |
| parent | 0977d80d00780494daa7b631839f674104828f11 (diff) | |
| download | emacs-config-03e41db24adf849755f296c740003e809febd489.tar.gz emacs-config-03e41db24adf849755f296c740003e809febd489.zip | |
Add test for oni-php
| -rw-r--r-- | .gitlab-ci.yml | 4 | ||||
| -rw-r--r-- | test/oni-php-test.el | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 04df165..c768a9d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,6 +21,10 @@ test-oni-highlight-indent-guides: stage: test script: make test-oni-highlight-indent-guides +test-oni-php: + stage: test + script: make test-oni-php DEPS="oni-flycheck oni-company oni-fci" + package: stage: package before_script: diff --git a/test/oni-php-test.el b/test/oni-php-test.el new file mode 100644 index 0000000..3288010 --- /dev/null +++ b/test/oni-php-test.el @@ -0,0 +1,4 @@ +(ert-deftest oni-php-test-autoloads () + "Test that `oni-php' gets loaded automatically." + (require 'php-mode) + (should (featurep 'oni-php))) |
