view release on metacpan or search on metacpan
;Log::Any = 1.045 ; Returns message and faster
[Prereqs / TestRequires]
;Test::More = 1.001005 ; First version that allows args to subtests
;Test::Deep = 0
;Test::Differences = 0
;Test::Fatal = 0
view all matches for this distribution
view release on metacpan or search on metacpan
v1.0.2 2012-08-12
- Missing build require module added.
v1.0.1 2012-08-05
- Module Test::Differences removed from test scripts to avoid
breaks on some systems.
- Some example files added.
- POD test and POD coverage test added.
- compareOrder() modified, it's using ~~ smart-match operator.
view all matches for this distribution
view release on metacpan or search on metacpan
-- next big thing --
-- backlog --
+ ++ API one-line report format for dying/warning
++ + MOD multiline like
+ ++ MOD port Test::Differences to refute
+ ++ TST Even more examples
++ ++ API todo() or $TODO - don't slow down passing tests!
++ ++ MOD Round-trip assertion
++ ++ MOD Util::Tempfile - preserve file if tests fail
+++ + API If contract with args fails, display args
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Asset/Pack.pm view on Meta::CPAN
=item * L<< C<Path::Tiny>|Path::Tiny >> is used extensively for mechanics, but C<Path::Tiny>
does not presently (Circa C<0.72>) work on C<< Perl <5.8 >>
(L<< details on C<GitHub>|https://github.com/dagolden/Path-Tiny/issues/145 >>)
=item * L<< C<Test::Differences>|Test::Differences >> is used a fair bit in tests, and
it won't auto-install on 5.6. But careful selection of dependencies will get you a
working install
=over 4
=item * C<< SMUELLER/Data-Dumper-2.128.tar.gz >> is newest version of Data::Dumper that
works on C<5.6.2>, versions C<2.130_03> to C<2.154> presently fail.
=item * C<< OVID/Test-Differences-0.61.tar.gz >> is the newest version of
Test::Differences that works on C<5.6.2>, versions C<0.61_01> to C<0.63> presently fail.
=back
=item * L<< C<Test::TempDir::Tiny>|Test::TempDir::Tiny >> is used a fair bit in tests as
well, and as of C<0.005-TRIAL>, C<5.6> support is
view all matches for this distribution
view release on metacpan or search on metacpan
t/lib/Test/Builder.pm view on Meta::CPAN
the test number using current_test() they will all be effected.
=head1 EXAMPLES
CPAN can provide the best examples. Test::Simple, Test::More,
Test::Exception and Test::Differences all use Test::Builder.
=head1 SEE ALSO
Test::Simple, Test::More, Test::Harness
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Batch/Interpreter/TestSupport.pm view on Meta::CPAN
our $VERSION = 0.01;
use Getopt::Long;
use Test::More;
use Test::Differences;
use Data::Dump qw(dump);
use File::Spec;
use File::Temp;
use Cwd;
view all matches for this distribution
view release on metacpan or search on metacpan
Minion::Backend::SQLite = 3.001
Mojo::SQLite = 2.002 ; Fixed use of deprecated Mojo::Util slurp
Test::Lib = 0
Mock::MonkeyPatch = 0
;Test::Deep = 0
;Test::Differences = 0
Test::Fatal = 0
view all matches for this distribution
view release on metacpan or search on metacpan
Test::Lib = 0
Test::Fatal = 0
Capture::Tiny = 0
Mock::MonkeyPatch = 0
;Test::Deep = 0
;Test::Differences = 0
view all matches for this distribution
view release on metacpan or search on metacpan
[Prereqs / TestRequires]
Test::More = 1.001005 ; First version that allows args to subtests
Test::Fatal = 0
;Test::Deep = 0
;Test::Differences = 0
view all matches for this distribution
view release on metacpan or search on metacpan
"ExtUtils::MakeMaker" : "0",
"File::Spec" : "0",
"IO::Handle" : "0",
"IPC::Open3" : "0",
"Test::Deep" : "0",
"Test::Differences" : "0.64",
"Test::Exception" : "0",
"Test::Lib" : "0",
"Test::More" : "1.001005"
}
}
view all matches for this distribution
view release on metacpan or search on metacpan
"perl" : "5.006"
}
},
"test" : {
"requires" : {
"Test::Differences" : "0",
"Test::More" : "0"
}
}
},
"release_status" : "stable",
view all matches for this distribution
view release on metacpan or search on metacpan
- Minor documentation edits.
- Reduced recursion during encoding.
- Minor documentation edits.
Dependencies:
- No longer need Test::Differences for tests
- Require "boolean" for true/false
Packaging:
- Added a package ABSTRACT
- Correctly specify *configure* dependencies which were
view all matches for this distribution
view release on metacpan or search on metacpan
t/Helper.pm view on Meta::CPAN
($output, $right_string) = $other_opts->{filter}->($output, $right_string)
if $other_opts->{filter};
my $got_filename;
$got_filename = $ext_file->('got');
# TODO : Perhaps make sure we optionally use eq_or_diff from
# Test::Differences here.
my $equal_output = $right_string eq $output;
Test::More::ok($right_string eq $output, 'Output comparison')
if $other_opts->{do_test};
unlink $err_filename if -z $err_filename;
if ($equal_output) {
view all matches for this distribution
view release on metacpan or search on metacpan
'-Wno-unused-result',
],
build_requires => { 'ExtUtils::CBuilder' => 0, },
configure_requires => { 'Module::Build' => 0.42, 'Module::Build::Pluggable' => 0, 'Module::Build::Pluggable::CPANfile' => 0, },
test_requires => { 'Test::Fake::HTTPD', => 0, 'Test::Differences' => 0, 'Test::Exception' => 0, 'Test::Output' => 0, },
requires => { 'perl' => '5.008' },
meta_merge => {
'resources' => {
'repository' => 'https://github.com/Ensembl/Bio-DB-Big',
},
view all matches for this distribution
view release on metacpan or search on metacpan
Similar to is(), except that if $this and $that are hash or array
references, it does a deep comparison walking each data structure to
see if they are equivalent. If the two structures are different, it
will display the place where they start differing.
Barrie Slaymaker's Test::Differences module provides more in-depth
functionality along these lines, and it plays well with Test::More.
B<NOTE> Display of scalar refs is not quite 100%
=cut
L<Test::Simple> if all this confuses you and you just want to write
some tests. You can upgrade to Test::More later (it's forward
compatible).
L<Test::Differences> for more ways to test complex data structures.
And it plays well with Test::More.
L<Test> is the old testing module. Its main benefit is that it has
been distributed with Perl since 5.004_05.
view all matches for this distribution
view release on metacpan or search on metacpan
t/lib/Test/Builder.pm view on Meta::CPAN
Test::Builder.
=head1 EXAMPLES
CPAN can provide the best examples. Test::Simple, Test::More,
Test::Exception and Test::Differences all use Test::Builder.
=head1 SEE ALSO
Test::Simple, Test::More, Test::Harness
view all matches for this distribution
view release on metacpan or search on metacpan
t/lib/Test/Builder.pm view on Meta::CPAN
Test::Builder.
=head1 EXAMPLES
CPAN can provide the best examples. Test::Simple, Test::More,
Test::Exception and Test::Differences all use Test::Builder.
=head1 SEE ALSO
Test::Simple, Test::More, Test::Harness
view all matches for this distribution
view release on metacpan or search on metacpan
cpanfile.snapshot view on Meta::CPAN
Pod::Text 0
Pod::Usage 1.36
Term::ANSIColor 0
Term::ReadKey 0
Test::Class 0.36
Test::Differences 0.5
Test::More 0
Text::Wrap 0
Try::Tiny 0.09
MooseX-Role-Parameterized-1.08
pathname: E/ET/ETHER/MooseX-Role-Parameterized-1.08.tar.gz
cpanfile.snapshot view on Meta::CPAN
Try::Tiny 0
constant 0
perl 5.008001
strict 0
warnings 0
Test-Differences-0.63
pathname: D/DC/DCANTRELL/Test-Differences-0.63.tar.gz
provides:
Test::Differences 0.63
requirements:
Capture::Tiny 0.24
Data::Dumper 2.126
Test::More 0
Text::Diff 0.35
view all matches for this distribution
view release on metacpan or search on metacpan
cpanfile.snapshot view on Meta::CPAN
List::Util 1.09
Scalar::Util 1.09
Test::More 0
Test::NoWarnings 0.02
Test::Tester 0.04
Test-Differences-0.61
pathname: O/OV/OVID/Test-Differences-0.61.tar.gz
provides:
Test::Differences 0.61
requirements:
Data::Dumper 2.126
Test::More 0
Text::Diff 0.35
Test-Exception-0.32
cpanfile.snapshot view on Meta::CPAN
Test::Most::Exception 0.33
requirements:
Exception::Class 1.14
ExtUtils::MakeMaker 0
Test::Deep 0.106
Test::Differences 0.61
Test::Exception 0.31
Test::Harness 3.21
Test::More 0.88
Test::Warn 0.23
Test-NoWarnings-1.04
view all matches for this distribution
view release on metacpan or search on metacpan
directory:
- inc
- t
requires:
Moo: 0
Test::Differences: 0
Test::Fatal: 0
Test::Roo: 0
Type::Tiny: 0
resources:
license: http://dev.perl.org/licenses/
view all matches for this distribution
view release on metacpan or search on metacpan
"requires" : {
"File::Basename" : "0",
"File::Find" : "0",
"File::Spec::Functions" : "0",
"File::Temp" : "0",
"Test::Differences" : "0",
"Test::Fatal" : "0",
"Test::More" : "0",
"strict" : "0",
"warnings" : "0"
}
view all matches for this distribution
view release on metacpan or search on metacpan
Term::ANSIColor
Test::Deep
Test::Differences
Test::Harness
Test::MockModule
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bundle/CPAN/Reporter/Smoker/Tests.pm view on Meta::CPAN
Test::Distribution [2.00]
Test::Inline [2.213]
Test::Snapshots [0.02]
Test::Kwalitee [1.19]
Test::DatabaseRow [2.04]
Test::Differences [0.62]
Test::Memory::Cycle [1.04]
Test::Taint [1.06]
Test::Class [0.46]
Test::Class::Moose [0.54]
Test::FailWarnings [0.008]
view all matches for this distribution
view release on metacpan or search on metacpan
The bug is not fixed.
- Fixed bug of quote "msgid" and all the different "msgstr"s.
0.06 Wed Jul 30 22:00:00 2008
- sixth developer test version
- change tests: change use Test::Differences in eval block to require
- add example
0.05 Tue Jul 29 15:00:00 2008
- fifth developer test version
- fixed any problems with charset and eol
view all matches for this distribution
view release on metacpan or search on metacpan
HollyKing.pm view on Meta::CPAN
Sort::Maker
Test::Class
Test::Differences
Test::Exception
Test::Pod
view all matches for this distribution
view release on metacpan or search on metacpan
Template
Test::Class
Test::Differences
Test::Exception
Test::MockModule
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bundle/Theory.pm view on Meta::CPAN
Test::Data::Array
Test::Deep
Test::Differences
Test::Exception
Test::File
view all matches for this distribution
view release on metacpan or search on metacpan
cpanfile.snapshot view on Meta::CPAN
List::Util 1.09
Scalar::Util 1.09
Test::More 0
Test::NoWarnings 0.02
Test::Tester 0.04
Test-Differences-0.62
pathname: D/DC/DCANTRELL/Test-Differences-0.62.tar.gz
provides:
Test::Differences 0.62
requirements:
Capture::Tiny 0.24
Data::Dumper 2.126
Test::More 0
Text::Diff 0.35
cpanfile.snapshot view on Meta::CPAN
Test::Most::Exception 0.34
requirements:
Exception::Class 1.14
ExtUtils::MakeMaker 0
Test::Deep 0.106
Test::Differences 0.61
Test::Exception 0.31
Test::Harness 3.21
Test::More 0.88
Test::Warn 0.23
Test-NoWarnings-1.04
view all matches for this distribution
view release on metacpan or search on metacpan
"requires" : {
"Data::Dumper" : "0",
"FindBin" : "0",
"Test::Class::Tiny" : "0.02",
"Test::Deep" : "0",
"Test::Differences" : "0",
"Test::Exception" : "0",
"Test::FailWarnings" : "0",
"Test::More" : "1.302133",
"Test::Pod" : "1",
"autodie" : "0"
view all matches for this distribution
view release on metacpan or search on metacpan
license => 'perl',
dist_author => 'Eduardo Santiago <esm@cpan.org>',
dist_version_from => 'lib/CGI/Alert.pm',
requires => {
'Test::More' => 0,
'Test::Differences' => 0,
},
add_to_cleanup => [ 'CGI-Alert-*' ],
);
$builder->create_build_script();
view all matches for this distribution