aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGravatar Tom Willemse2019-08-25 13:12:42 -0700
committerGravatar Tom Willemse2019-08-25 13:12:42 -0700
commit26dbc5eac3f866d9d50a9e1d39701dcd6745f3fd (patch)
tree41a56c0e717a629aaea3ca3f82e26b1544253b74 /test
parentee405b8b400fedae623ebbd514fa04e8803ab185 (diff)
downloademacs-config-26dbc5eac3f866d9d50a9e1d39701dcd6745f3fd.tar.gz
emacs-config-26dbc5eac3f866d9d50a9e1d39701dcd6745f3fd.zip
Remove ‘less-css-mode’ test
Since ‘less-css-mode’ is derived from ‘css-mode’, we should be able to assume that if it works in ‘css-mode’, it’ll work in ‘less-css-mode’. Also if there are going to be any customizations required, I might have to create a new settings file anyway.
Diffstat (limited to 'test')
-rw-r--r--test/oni-css-test.el8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/oni-css-test.el b/test/oni-css-test.el
index b49ec07..3ee55e3 100644
--- a/test/oni-css-test.el
+++ b/test/oni-css-test.el
@@ -32,13 +32,5 @@
(unload-feature 'oni-css t)
(unload-feature 'css-mode t))
-(ert-deftest oni-css-test-less-autoloads ()
- "Test that ‘oni-css’ gets loaded automatically with less."
- (should (not (featurep 'oni-css)))
- (require 'less-css-mode)
- (should (featurep 'oni-css))
- (unload-feature 'oni-css t)
- (unload-feature 'less-css-mode t))
-
(provide 'oni-css-test)
;;; oni-css-test.el ends here