aboutsummaryrefslogtreecommitdiff
path: root/tests/test-duet-smoke.el
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-duet-smoke.el')
-rw-r--r--tests/test-duet-smoke.el9
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/test-duet-smoke.el b/tests/test-duet-smoke.el
index 4f88a0e..07d75ea 100644
--- a/tests/test-duet-smoke.el
+++ b/tests/test-duet-smoke.el
@@ -28,13 +28,10 @@
(require 'test-bootstrap (expand-file-name "test-bootstrap.el"))
(ert-deftest test-duet-smoke-feature-loaded ()
- "The package source loads and defines its entry command."
+ "The package source loads and defines its entry command and commander mode."
(should (featurep 'duet))
- (should (commandp 'duet)))
-
-(ert-deftest test-duet-smoke-entry-not-yet-implemented ()
- "The entry command errors until the pane layout lands (Phase 4)."
- (should-error (duet)))
+ (should (commandp 'duet))
+ (should (fboundp 'duet-mode)))
(provide 'test-duet-smoke)
;;; test-duet-smoke.el ends here