Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
50e7e810
Commit
50e7e810
authored
Jul 11, 2019
by
Lars Ingebrigtsen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test to time-stamp.el
parent
2daeea78
Pipeline
#2372
passed with stage
in 54 minutes and 34 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
test/lisp/time-stamp-tests.el
test/lisp/time-stamp-tests.el
+36
-0
No files found.
test/lisp/time-stamp-tests.el
0 → 100644
View file @
50e7e810
;;; time-stamp-tests.el --- tests for time-stamp.el -*- lexical-binding: t -*-
;; Copyright (C) 2019 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Code:
(
require
'ert
)
(
require
'time-stamp
)
(
defun
test-stamp
(
ts-format
time
)
(
time-stamp--format
(
time-stamp-string-preprocess
ts-format
time
)
time
))
(
ert-deftest
test-time-stamp
()
(
let
((
user-login-name
"foo"
)
(
time-stamp-time-zone
t
)
(
time
'
(
23847
24475
657815
318000
))
(
format
"%:y-%02m-%02d %02H:%02M:%02S %u"
))
(
should
(
equal
(
test-stamp
format
time
)
"2019-07-11 16:11:07 foo"
))))
;;; time-stamp-tests.el ends here
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment