ui: 'string->duration' correctly handles hours.
* guix/ui.scm (string->duration): Add missing '=>' for hours. * tests/ui.scm ("duration, 2 hours"): New test.
This commit is contained in:
parent
af8f8281db
commit
30d2397f73
|
@ -1008,6 +1008,7 @@ following patterns: \"1d\", \"1w\", \"1m\"."
|
||||||
(make-time time-duration 0
|
(make-time time-duration 0
|
||||||
(string->number (match:substring match 1)))))
|
(string->number (match:substring match 1)))))
|
||||||
((string-match "^([0-9]+)h$" str)
|
((string-match "^([0-9]+)h$" str)
|
||||||
|
=>
|
||||||
(lambda (match)
|
(lambda (match)
|
||||||
(hours->duration 1 match)))
|
(hours->duration 1 match)))
|
||||||
((string-match "^([0-9]+)d$" str)
|
((string-match "^([0-9]+)d$" str)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -189,6 +189,10 @@ Second line" 24))
|
||||||
(string->duration "1m")
|
(string->duration "1m")
|
||||||
(string->duration "30d"))
|
(string->duration "30d"))
|
||||||
|
|
||||||
|
(test-equal "duration, 2 hours"
|
||||||
|
7200
|
||||||
|
(time-second (string->duration "2h")))
|
||||||
|
|
||||||
(test-equal "duration, 1 second"
|
(test-equal "duration, 1 second"
|
||||||
(make-time time-duration 0 1)
|
(make-time time-duration 0 1)
|
||||||
(string->duration "1s"))
|
(string->duration "1s"))
|
||||||
|
|
Loading…
Reference in New Issue