~ubuntu-branches/ubuntu/trusty/libtest-roo-perl/trusty-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use 5.008001;

package MyTest;
use Test::Roo;

use lib 't/lib';

has class => (
    is       => 'ro',
    required => 1,
);

with 'ClassConstructor';

package main;
use strictures;
use Test::More;

for my $c (qw/Digest::MD5 Math::BigInt/) {
    MyTest->run_tests( $c, { class => $c } );
}

done_testing;
#
# This file is part of Test-Roo
#
# This software is Copyright (c) 2013 by David Golden.
#
# This is free software, licensed under:
#
#   The Apache License, Version 2.0, January 2004
#
# vim: ts=4 sts=4 sw=4 et: