LIMS-MT_Plate

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

use 5.006001;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME              => 'LIMS::MT_Plate',
    VERSION_FROM      => 'lib/LIMS/MT_Plate.pm', # finds $VERSION
    PREREQ_PM         => {
							Microarray => 0.43,
							Test::More => 0.64,
							Test::Group => 0.07,
							Test::Differences => 0.47,
							Test::Deep => 0.096,
							Test::Exception => 0.21							
    },
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      (AUTHOR         => 'Christopher Jones <c.jones@ucl.ac.uk>') : ()),
);

README  view on Meta::CPAN


DEPENDENCIES

This module requires the CPAN module;

  Microarray

Testing requires the following CPAN modules;

  Test::More
  Test::Group
  Test::Differences
  Test::Deep
  Test::Exception

COPYRIGHT AND LICENCE

Copyright (C) 2008 by Christopher Jones, University College London

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

t/LIMS-MT_Plate.t  view on Meta::CPAN

#! /usr/bin/perl -w

use strict;

use Test::Harness;
use Test::More tests=>13;
use Test::Group;
use Test::Differences;
use Test::Deep;
use Test::Exception;

# 1,2
BEGIN {
	use_ok('LIMS::MT_Plate');
	use_ok('LIMS::MT_Plate_File');
	$SIG{__WARN__} = \&trap_warn;
}



( run in 0.604 second using v1.01-cache-2.11-cpan-131fc08a04b )