guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/20: gnu: Add Test-MockTime.


From: Eric Bavier
Subject: 06/20: gnu: Add Test-MockTime.
Date: Wed, 11 Mar 2015 21:08:52 +0000

bavier pushed a commit to branch master
in repository guix.

commit 9bc8671846c5a3f8567f83ff86df31df5badbd09
Author: Eric Bavier <address@hidden>
Date:   Tue Mar 10 15:09:38 2015 -0500

    gnu: Add Test-MockTime.
    
    * gnu/packages/perl.scm (perl-test-mocktime): New variable.
---
 gnu/packages/perl.scm |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 4fe5f1f..f189419 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -1881,6 +1881,28 @@ testing exception-throwing code with about the same 
amount of typing.")
 automatically aggregated and output to STDOUT.")
     (license (package-license perl))))
 
+(define-public perl-test-mocktime
+  (package
+    (name "perl-test-mocktime")
+    (version "0.13")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://cpan/authors/id/D/DD/DDICK/"
+                           "Test-MockTime-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0yrqmjg33akannwz2f99rfm7dvvxpzsdj23lsvlvfi4qslrlqfvw"))))
+    (build-system perl-build-system)
+    (home-page "http://search.cpan.org/dist/Test-MockTime";)
+    (synopsis "Replaces actual time with simulated time")
+    (description "This module was created to enable test suites to test code
+at specific points in time.  Specifically it overrides localtime, gmtime and
+time at compile time and then relies on the user supplying a mock time via
+set_relative_time, set_absolute_time or set_fixed_time to alter future calls
+to gmtime,time or localtime.")
+    (license (package-license perl))))
+
 (define-public perl-test-most
   (package
     (name "perl-test-most")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]