logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Test::Time - Overrides the time() and sleep() core functions for testing

Author

Description

       Test::Time can be used to test modules that deal with time. Once you "use" this module, all references to
       "time", "localtime" and "sleep" will be internalized.  You can set custom time by passing time => number
       after the "use" statement:

           use Test::Time time => 1;

           my $now = time;    # $now is equal to 1
           sleep 300;         # returns immediately, displaying a note
           my $then = time;   # $then equals to 301

License

       This library is free software; you can redistribute it and/or modify it under the same terms as Perl
       itself.

perl v5.34.0                                       2022-07-16                                    Test::Time(3pm)

Name

       Test::Time - Overrides the time() and sleep() core functions for testing

See Also

Synopsis

           use Test::Time;

           # Freeze time
           my $now = time();

           # Increment internal time (returns immediately)
           sleep 1;

           # Return internal time incremented by 1
           my $then = time();

See Also