summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test-calendar-sync--expand-weekly.el4
-rw-r--r--tests/test-flycheck-languagetool-setup.el12
2 files changed, 9 insertions, 7 deletions
diff --git a/tests/test-calendar-sync--expand-weekly.el b/tests/test-calendar-sync--expand-weekly.el
index d7b0eddc..fe333c98 100644
--- a/tests/test-calendar-sync--expand-weekly.el
+++ b/tests/test-calendar-sync--expand-weekly.el
@@ -24,9 +24,7 @@
;;; Normal Cases
(ert-deftest test-calendar-sync--expand-weekly-normal-saturday-returns-occurrences ()
- "Test expanding weekly event on Saturday (GTFO use case).
-Known issue: Timezone calculation may cause off-by-one day error."
- :expected-result :failed
+ "Test expanding weekly event on Saturday (GTFO use case)."
(test-calendar-sync--expand-weekly-setup)
(unwind-protect
(let* ((start-date (test-calendar-sync-time-days-from-now 1 10 30))
diff --git a/tests/test-flycheck-languagetool-setup.el b/tests/test-flycheck-languagetool-setup.el
index a719e822..aa71d4a7 100644
--- a/tests/test-flycheck-languagetool-setup.el
+++ b/tests/test-flycheck-languagetool-setup.el
@@ -29,12 +29,16 @@
(should (file-executable-p wrapper-path))))
(ert-deftest test-flycheck-languagetool-setup-normal-languagetool-installed ()
- "Test that languagetool command is available in PATH."
- (should (executable-find "languagetool")))
+ "Test that languagetool command is available in PATH.
+The test failure serves as a reminder to install the dependency."
+ (should (or (executable-find "languagetool")
+ (error "LanguageTool not installed. Install with: sudo pacman -S languagetool"))))
(ert-deftest test-flycheck-languagetool-setup-normal-python3-available ()
- "Test that python3 is available for wrapper script."
- (should (executable-find "python3")))
+ "Test that python3 is available for wrapper script.
+The test failure serves as a reminder to install the dependency."
+ (should (or (executable-find "python3")
+ (error "python3 not installed. Install with: sudo pacman -S python"))))
;; ----------------------------- Boundary Cases --------------------------------