view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
NAME => 'DBIx::Compare::ContentChecksum::mysql',
VERSION_FROM => 'lib/DBIx/Compare/ContentChecksum/mysql.pm',
PREREQ_PM => { DBIx::Compare => 1.1,
DBI => 1.605,
DBD::mysql => 4.007,
Test::Differences => 0.47,
Test::More => 0.80,
Test::Group => 0.07
},
($] >= 5.005 ?
(AUTHOR => 'Christopher Jones <c.jones@ucl.ac.uk>') : ()),
view all matches for this distribution
view release on metacpan or search on metacpan
build_requires:
ExtUtils::MakeMaker: 6.42
Module::Install::ReadmeFromPod: 0
Module::Install::Repository: 0
Test::Deep: 0
Test::Differences: 0
Test::More: 0
Test::Requires: 0
Test::UseAllModules: 0
configure_requires:
ExtUtils::MakeMaker: 6.42
view all matches for this distribution
view release on metacpan or search on metacpan
t/lib/TestAppBase.pm view on Meta::CPAN
use Dancer ':syntax';
use Dancer::Logger;
use Dancer::Test;
use Test::More import => ['!pass'];
use Test::Differences;
use HTML::TreeBuilder;
use Moo;
has 'dbh' => (is=>'rw', required=>1);
has 'provider' => (is=>'rw', required=>1); # "Database" or "DBIC"
view all matches for this distribution
view release on metacpan or search on metacpan
carton.lock view on Meta::CPAN
}
},
"target" : "Test::Deep",
"version" : "0.112"
},
"Test::Differences" : {
"dist" : "Test-Differences-0.61",
"mymeta" : {
"abstract" : "Test strings and data structures and show differences if not ok",
"author" : [
"Curtis \"Ovid\" Poe <ovid@cpan.org>"
],
carton.lock view on Meta::CPAN
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "Test-Differences",
"prereqs" : {
"configure" : {
"requires" : {
"Module::Build" : "0.36"
}
carton.lock view on Meta::CPAN
"Text::Diff" : "0.35"
}
}
},
"provides" : {
"Test::Differences" : {
"file" : "lib/Test/Differences.pm",
"version" : "0.61"
}
},
"release_status" : "stable",
"resources" : {
"license" : [
"http://dev.perl.org/licenses/"
],
"repository" : {
"url" : "https://github.com/Ovid/Test-Differences"
}
},
"version" : "0.61"
},
"name" : "Test::Differences",
"pathname" : "O/OV/OVID/Test-Differences-0.61.tar.gz",
"provides" : {
"Test::Differences" : {
"file" : "Test/Differences.pm",
"version" : "0.61"
}
},
"target" : "Test::Differences",
"version" : "0.61"
},
"Test::Easy" : {
"dist" : "Test-Easy-1.09",
"mymeta" : {
carton.lock view on Meta::CPAN
},
"runtime" : {
"requires" : {
"Exception::Class" : "1.14",
"Test::Deep" : "0.106",
"Test::Differences" : "0.61",
"Test::Exception" : "0.31",
"Test::Harness" : "3.21",
"Test::More" : "0.88",
"Test::Warn" : "0.23"
}
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
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/Data/AnyXfer/Test/Kit.pm view on Meta::CPAN
include 'strict';
include 'warnings';
include 'Test::More';
include 'Test::Exception';
include 'Test::Deep';
include 'Test::Differences';
include 'Test::Warn';
# More tests
include 'Test::LongString';
view all matches for this distribution
view release on metacpan or search on metacpan
'DateTime::Format::Strptime'
=> 0,
},
build_requires => {
'Test::More' => 0,
'Test::Differences' => 0,
'Test::Exception' => 0,
'File::Slurp' => 0,
'File::Which' => 0,
},
script_files => [
view all matches for this distribution
view release on metacpan or search on metacpan
"Devel::StackTrace" : "0",
"File::Temp" : "0",
"Scalar::Type" : "v0.3.1",
"Scalar::Util" : "0",
"String::Binary::Interpolation" : "0",
"Test::Differences" : "0",
"Test::Exception" : "0",
"Test::More" : "0.96"
}
}
},
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Data/Comparable.pm view on Meta::CPAN
$self->items; # autovivify;
}
# in some test file:
use Test::Differences;
my $x = '...';
my $y = '...';
eq_or_diff($x->comparable, $y->comparable, 'objects are equal');
=head1 DESCRIPTION
lib/Data/Comparable.pm view on Meta::CPAN
objects to be equal even though they differ in some hash keys.
This is where Data::Comparable can help. It enables you to define how your
object wants to look like when it is being passed to some deep comparison
function like C<Test::More::is_deeply()> or
C<Test::Differences::eq_or_diff()>. If your class inherits from
Data::Comparable, it gets a method called C<comparable()>, which you can call
when comparing it. That is, you don't compare the actual objects, but their
comparable versions.
To define the comparable version of your object, your class has to implement
view all matches for this distribution
view release on metacpan or search on metacpan
"CPAN::Meta" : "2.120900"
},
"requires" : {
"ExtUtils::MakeMaker" : "0",
"File::Spec" : "0",
"Test::Differences" : "0",
"Test::More" : "0.96"
}
}
},
"release_status" : "stable",
view all matches for this distribution
view release on metacpan or search on metacpan
'Encode' => 0,
},
build_requires => {
'Test::More' => 0,
'Test::Deep' => 0,
'Test::Differences' => 0,
'Test::Exception' => 0,
},
add_to_cleanup => [ 'Data-Header-Fields-*' ],
create_readme => 1,
meta_merge => {
view all matches for this distribution
view release on metacpan or search on metacpan
dist_version_from => 'lib/Data/Keys.pm',
configure_requires => {'Module::Build' => 0.36},
build_requires => {
'Test::More' => 0,
'Test::Differences' => 0,
'Test::Exception' => 0,
'Test::NoMalware' => 0,
'File::Temp' => 0,
'JSON::Util' => 0,
},
view all matches for this distribution
view release on metacpan or search on metacpan
}
},
"test" : {
"requires" : {
"DateTime::Format::SQLite" : "0",
"Test::Differences" : "0",
"Test::Exception" : "0",
"Test::More" : "0.94",
"Test::Warn" : "0"
}
}
view all matches for this distribution
view release on metacpan or search on metacpan
Test::Builder::Module = 0
[Prereqs / TestRequires]
Test::V0 = 0
Test::More = 0.94
Test::Differences = 0
Test::Exception = 0
Test::Memory::Cycle = 1.04
Test::Warn = 0
view all matches for this distribution
view release on metacpan or search on metacpan
"requires" : {
"Carp" : 0,
"English" : 0,
"File::Find" : 0,
"File::Temp" : 0,
"Test::Differences" : 0,
"Test::More" : "0.94"
}
}
},
"provides" : {
view all matches for this distribution
view release on metacpan or search on metacpan
t/02_test_example.t view on Meta::CPAN
use strict;
use warnings;
use Test::More;
use Test::Differences;
use Carp qw(croak);
use Cwd qw(getcwd chdir);
use English qw(-no_match_vars $INPUT_RECORD_SEPARATOR $OS_ERROR $CHILD_ERROR);
$ENV{TEST_EXAMPLE} or plan(
view all matches for this distribution
view release on metacpan or search on metacpan
"Capture::Tiny" : "0",
"Role::Tiny::With" : "0",
"Test2::API" : "1.302015",
"Test2::Require::Module" : "0.000121",
"Test2::V0" : "0.000121",
"Test::Differences" : "0",
"perl" : "v5.20.0"
}
}
},
"release_status" : "stable",
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Data/Semantic/URI/http_TEST.pm view on Meta::CPAN
package Data::Semantic::URI::http_TEST;
our $VERSION = '1.100850';
# ABSTRACT: Test companion class for the http URI semantic data class
use Test::More;
use Test::Differences;
use parent qw(
Data::Semantic::Test
Data::Semantic::URI::TestData::http
);
use constant PLAN => 2;
view all matches for this distribution
view release on metacpan or search on metacpan
"Carp" : 0,
"English" : 0,
"File::Find" : 0,
"File::Temp" : 0,
"Scalar::Util" : 0,
"Test::Differences" : 0,
"Test::More" : "0.94"
}
}
},
"provides" : {
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
'MIME::Base64' => 0,
'XML::Char' => 0,
},
build_requires => {
'Test::More' => 0,
'Test::Differences' => 0,
'Test::Exception' => 0,
},
add_to_cleanup => [ 'Data-asXML-*' ],
create_readme => 1,
meta_merge => {
view all matches for this distribution
view release on metacpan or search on metacpan
'Module::Build' => '0.3607',
},
build_requires => {
'Module::Build::SysPath' => 0.13,
'Test::More' => 0,
'Test::Differences' => 0,
'Test::Exception' => 0,
},
requires => {
'Moose' => 0,
'IO::Uncompress::Bunzip2' => 0,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Devel/Cover.pm view on Meta::CPAN
=item * L<Test::More>
Required if you want to run Devel::Cover's own tests.
=item * L<Test::Differences>
Needed if the tests fail and you would like nice output telling you why.
=item * L<Template> and L<Parallel::Iterator>
view all matches for this distribution
view release on metacpan or search on metacpan
---
abstract: 'Collect and report caller (test file) and covered (source file) statistics from the cover_db'
author:
- 'Johan Lindstrom <johanl@cpan.org>'
build_requires:
Test::Differences: 0
Test::Exception: 0
Test::More: 0
warnings: 0
configure_requires:
ExtUtils::MakeMaker: 0
view all matches for this distribution
view release on metacpan or search on metacpan
distribution_type: module
configure_requires:
ExtUtils::MakeMaker: 0
requires:
List::Util: 0
Test::Differences: 0
Test::More: 0
no_index:
directory:
- t
- inc
view all matches for this distribution
view release on metacpan or search on metacpan
},
test_requires => { # Requires Module::Build 0.4004
'Test::More' => 0,
'Test::Output' => 0,
'Test::CheckDeps' => 0,
'Test::Differences' => 0,
'Data::Section::Simple' => 0,
},
configure_requires => {
'Module::Build' => 0.42, # Recomented by LEONT
},
view all matches for this distribution
view release on metacpan or search on metacpan
},
"prereqs" : {
"build" : {
"requires" : {
"Test::Deep" : 0,
"Test::Differences" : 0,
"Test::Exception" : 0,
"Test::More" : 0
}
},
"configure" : {
view all matches for this distribution
view release on metacpan or search on metacpan
---
abstract: Turn Perl code into a graphical flowchart
author:
- 'Tels <nospam-abuse@bloodgate.com>'
build_requires:
Test::Differences: 0.47
Test::More: 0.62
distribution_type: module
generated_by: Module::Install version 0.68
license: gpl
meta-spec:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Devel/LeakGuard/Object.pm view on Meta::CPAN
__END__
=head1 DEPENDENCIES
L<List::Util>, L<Scalar::Util>, L<Test::Differences>, L<Test::More>
=head1 SEE ALSO
L<Devel::Leak::Object>
view all matches for this distribution