~ubuntu-branches/ubuntu/trusty/libtest-simple-perl/trusty

« back to all changes in this revision

Viewing changes to lib/Test/Builder/Module.pm

  • Committer: Package Import Robot
  • Author(s): Damyan Ivanov
  • Date: 2013-10-18 22:04:51 UTC
  • mfrom: (1.3.7)
  • Revision ID: package-import@ubuntu.com-20131018220451-gf7pmffh2zwa16er
Tags: 0.99-1
* New upstream release
* drop perl5.18.tests patch, no longer needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
use strict;
4
4
 
5
 
use Test::Builder;
 
5
use Test::Builder 0.99;
6
6
 
7
7
require Exporter;
8
8
our @ISA = qw(Exporter);
9
9
 
10
 
our $VERSION = '0.98';
 
10
our $VERSION = '0.99';
11
11
$VERSION = eval $VERSION;      ## no critic (BuiltinFunctions::ProhibitStringyEval)
12
12
 
13
13