diff options
author | Ulrich Müller <ulm@gentoo.org> | 2024-09-25 20:27:27 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2024-09-25 20:27:27 +0200 |
commit | b60406b5d64354e78b7c3b80ea0e5756978353ec (patch) | |
tree | 55776cbc37bf9befe2ef9a86105e9a0afb8f17d4 | |
parent | Remove ia64 from list of archs (diff) | |
download | ebuild-mode-b60406b5d64354e78b7c3b80ea0e5756978353ec.tar.gz ebuild-mode-b60406b5d64354e78b7c3b80ea0e5756978353ec.tar.bz2 ebuild-mode-b60406b5d64354e78b7c3b80ea0e5756978353ec.zip |
Update ebuild-mode-time-string test
* test/ebuild-mode-tests.el (ebuild-mode-test-time-string):
Run with fixed time.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | test/ebuild-mode-tests.el | 10 |
2 files changed, 7 insertions, 6 deletions
@@ -1,5 +1,8 @@ 2024-09-25 Ulrich Müller <ulm@gentoo.org> + * test/ebuild-mode-tests.el (ebuild-mode-test-time-string): + Run with fixed time. + * ebuild-mode.el (ebuild-mode-arch-list): Remove ia64. 2024-09-10 Ulrich Müller <ulm@gentoo.org> diff --git a/test/ebuild-mode-tests.el b/test/ebuild-mode-tests.el index a12c4ee..e714796 100644 --- a/test/ebuild-mode-tests.el +++ b/test/ebuild-mode-tests.el @@ -62,12 +62,10 @@ (should (ebuild-mode-arch-lessp "x86-linux" "ppc-macos"))) (ert-deftest ebuild-mode-test-time-string () - (should (string-equal - (ebuild-mode-time-string "%Y-%m-%d %H:%M:%S" '(14257 22633)) - "1999-08-11 11:03:05")) - (should (string-equal - (ebuild-mode-time-string "%Y-%m-%d %H:%M:%S" '(33451 44363)) - "2039-06-21 17:11:39"))) + (ebuild-mode-test-run-with-fixed-time + (should (string-equal + (ebuild-mode-time-string "%Y-%m-%d %H:%M:%S") + "2024-08-10 00:00:00")))) (ert-deftest ebuild-mode-test-font-lock () (with-temp-buffer |