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

NAME

Test::Approvals::Reporters::FirstWorkingReporter - Report using the first reporter that appears to be working in the test environment.

VERSION

This documentation refers to Test::Approvals::Reporters::FirstWorkingReporter version v0.0.5

SYNOPSIS

    use Test::Approvals::Reporters;

    my @reporters = (
        Test::Approvals::Reporters::BeyondCompareReporter->new(),
        Test::Approvals::Reporters::CodeCompareReporter->new(),
    );

    my $reporter = Test::Approvals::Reporters::FirstWorkingReporter->new(
        reporters => \@reporters
    );

    my $received = 'test.received.txt';
    my $approved = 'test.approved.txt';
    $reporter->report($received, $approved);

DESCRIPTION

Use this module to create a MultiReporter that chooses the first reporter it can find which appears to be working in the test environment.

SUBROUTINES/METHODS

report

    my $received = 'test.received.txt';
    my $approved = 'test.approved.txt';
    $reporter->report($received, $approved);

If any reporter is working in the test environment, use it to report.

is_working_in_this_environment

    my $working = $reporter->is_working_in_this_environment;

If any reporter is working in the test environment, return a true value.

DIAGNOSTICS

None at this time.

CONFIGURATION AND ENVIRONMENT

None

DEPENDENCIES

    Carp File::Spec List::MoreUtils List::Util Moose Moose::Util

INCOMPATIBILITIES

None known.

BUGS AND LIMITATIONS

Windows-only. Linux/OSX/other support will be added when time and access to those platforms permit.

AUTHOR

Jim Counts - @jamesrcounts

LICENSE AND COPYRIGHT

Copyright (C) 2013 Jim Counts

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

    L<http://www.apache.org/licenses/LICENSE-2.0>

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.