ddclient/t/lib/ok.pm
Richard Hansen 94aaff67cd Add Test::Simple v1.302175 to t/lib
The version of Test::More available in CentOS/RHEL 6 doesn't include
`subtest`, which we want to use. We can revert this commit once we
drop support for CentOS/RHEL 6.

The code is licensed under the same terms as Perl 5 itself:
https://github.com/Test-More/test-more/blob/v1.302175/LICENSE
2020-07-07 13:01:13 -04:00

49 lines
967 B
Perl

package ok;
our $VERSION = '1.302175';
use strict;
use Test::More ();
sub import {
shift;
if (@_) {
goto &Test::More::pass if $_[0] eq 'ok';
goto &Test::More::use_ok;
}
# No argument list - croak as if we are prototyped like use_ok()
my (undef, $file, $line) = caller();
($file =~ /^\(eval/) or die "Not enough arguments for 'use ok' at $file line $line\n";
}
__END__
=encoding UTF-8
=head1 NAME
ok - Alternative to Test::More::use_ok
=head1 SYNOPSIS
use ok 'Some::Module';
=head1 DESCRIPTION
With this module, simply change all C<use_ok> in test scripts to C<use ok>,
and they will be executed at C<BEGIN> time.
Please see L<Test::use::ok> for the full description.
=head1 CC0 1.0 Universal
To the extent possible under law, 唐鳳 has waived all copyright and related
or neighboring rights to L<Test-use-ok>.
This work is published from Taiwan.
L<http://creativecommons.org/publicdomain/zero/1.0>
=cut