The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Test::Class::Moose::Report::Time - Reporting object for timing

VERSION

version 0.60

DESCRIPTION

Note that everything in here is experimental and subject to change.

All times are in seconds.

ATTRIBUTES

real

    my $real = $time->real;

Returns the "real" amount of time the class or method took to run.

user

    my $user = $time->user;

Returns the "user" amount of time the class or method took to run.

system

    my $system = $time->system;

Returns the "system" amount of time the class or method took to run.

METHODS

duration

Returns the returns a human-readable representation of the time this class or method took to run. Something like:

  0.00177908 wallclock secs ( 0.00 usr +  0.00 sys =  0.00 CPU)

AUTHOR

Curtis "Ovid" Poe <ovid@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Curtis "Ovid" Poe.

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