The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

CPAN::Testers::TailLog::Result - A single log entry from metabase.cpantesters.org

DESCRIPTION

All propteries in this object are verbatim strings from upstream, with unicode text (not bytes) where relevant.

METHODS

accepted

The time the report was accepted to Metabase, verbatim.

  # {YYYY}-{MM}-{DD}T{HH}:{MM}:{SS}Z
  my $time = $result->accepted

filename

The CPAN relative path to the filename the test report is for

  # {CPANAUTHOR}/{PATH}
  my $text = $result->filename

grade

The status of the test report

  # pass|fail|na|unknown
  my $grade = $result->grade

perl_version

The version of Perl the test ran on

  # perl-vX.YY.Z
  my $pv = $result->perl_version

platform

The OS/Architecture the test ran on

  # eg: x86_64-gnukfreebsd
  my $pf = $result->platform

reporter

The person who submitted the report

  # "AuthörName"
  my $name = $result->reporter;

submitted

The submission time of the report

  # {YYYY}-{MM}-{DD}T{HH}:{MM}:{SS}Z
  my $time = $result->submitted

uuid

The unique identifier of the report

  # {HEX(8)}-{HEX(4)}-{HEX(4)}-{HEX(4)}-{HEX(12)}
  my $id = $result->uuid

AUTHOR

Kent Fredric <kentnl@cpan.org>

LICENSE

This software is copyright (c) 2016 by Kent Fredric.

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