DBIx-Compare

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

use 5.006001;
use ExtUtils::MakeMaker;

use File::Basename;


WriteMakefile(
    NAME              => 'DBIx::Compare',
    VERSION_FROM      => 'lib/DBIx/Compare.pm',
    PREREQ_PM         => {	DBI => 1.605,
							Test::Differences => 0.47,
    						Test::More => 0.80,
    						Test::Group => 0.07,
    						Module::List => 0.001
    					},
    ($] >= 5.005 ? 
      (AUTHOR         => 'Christopher Jones <c.jones@ucl.ac.uk>') : ()),
);

README  view on Meta::CPAN

DEPENDENCIES

This module requires these other modules and libraries:

  DBI

The test scripts accompanying the modules require the following modules and libraries:

  Test::More
  Test::Group
  Test::Differences

COPYRIGHT AND LICENCE

Copyright (C) 2008 by Christopher Jones

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself

t/DBIx_Compare.t  view on Meta::CPAN

#! /usr/bin/perl -w

use strict;

use Test::More tests=>35;
use Test::Group;
use Test::Differences;

use DBI;

# 1
BEGIN {
	use_ok('DBIx::Compare');
}

my $user_name = 'test';
my $user_pass = '';



( run in 1.795 second using v1.01-cache-2.11-cpan-6aa56a78535 )