~ubuntu-branches/ubuntu/jaunty/libwebservice-youtube-perl/jaunty

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann, gregor herrmann, Rene Mayorga
  • Date: 2009-01-20 20:15:11 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090120201511-3wdnulqeln55lkzk
Tags: 1.0.3-1
[ gregor herrmann ]
* debian/control: Changed: Switched Vcs-Browser field to ViewSVN
  (source stanza).
* debian/control: Added: ${misc:Depends} to Depends: field.

[ Rene Mayorga ]
* debian/control: update my email address.

[ gregor herrmann ]
* New upstream release (closes: #512375).
* debian/control:
  - change my email address
  - extend long description
* Set debhelper compatibility level to 7; adapt
  debian/{control,compat,rules}.
* Don't install README anymore.
* debian/copyright: switch to new format and add information about files
  under inc/.
* Set Standards-Version to 3.8.0 (no further changes).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#line 1
2
2
package Test::Builder::Module;
3
3
 
 
4
use strict;
 
5
 
4
6
use Test::Builder;
5
7
 
6
8
require Exporter;
7
 
@ISA = qw(Exporter);
8
 
 
9
 
$VERSION = '0.71';
10
 
 
11
 
use strict;
 
9
our @ISA = qw(Exporter);
 
10
 
 
11
our $VERSION = '0.80';
12
12
 
13
13
# 5.004's Exporter doesn't have export_to_level.
14
14
my $_export_to_level = sub {
24
24
 
25
25
sub import {
26
26
    my($class) = shift;
 
27
    
 
28
    # Don't run all this when loading ourself.
 
29
    return 1 if $class eq 'Test::Builder::Module';
27
30
 
28
31
    my $test = $class->builder;
29
32
 
67
70
}
68
71
 
69
72
 
70
 
#line 144
 
73
#line 147
71
74
 
72
75
sub import_extra {}
73
76
 
74
77
 
75
 
#line 175
 
78
#line 178
76
79
 
77
80
sub builder {
78
81
    return Test::Builder->new;