r50425 - in /branches/upstream/libaspect-perl/current: ./ lib/ lib/Aspect/ lib/Aspect/Advice/ lib/Aspect/Library/ lib/Aspect/Library/Listenable/ lib/Aspect/Pointcut/ t/

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Thu Jan 7 04:37:13 UTC 2010


Author: jawnsy-guest
Date: Thu Jan  7 04:37:08 2010
New Revision: 50425

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=50425
Log:
[svn-upgrade] Integrating new upstream version, libaspect-perl (0.31)

Modified:
    branches/upstream/libaspect-perl/current/Changes
    branches/upstream/libaspect-perl/current/META.yml
    branches/upstream/libaspect-perl/current/README
    branches/upstream/libaspect-perl/current/lib/Aspect.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/Advice.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/Advice/After.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/Advice/Around.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/Advice/Before.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/AdviceContext.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/Library/Listenable.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/Library/Listenable/Event.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/Library/Singleton.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/Library/Wormhole.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/Modular.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/AndOp.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/Call.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/Cflow.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/NotOp.pm
    branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/OrOp.pm
    branches/upstream/libaspect-perl/current/t/01_compile.t
    branches/upstream/libaspect-perl/current/t/02_advice_context.t
    branches/upstream/libaspect-perl/current/t/11_pointcut_call.t
    branches/upstream/libaspect-perl/current/t/12_pointcut_cflow.t
    branches/upstream/libaspect-perl/current/t/21_advice.t
    branches/upstream/libaspect-perl/current/t/22_advice_around.t
    branches/upstream/libaspect-perl/current/t/31_feature_caller.t
    branches/upstream/libaspect-perl/current/t/32_feature_wantarray.t
    branches/upstream/libaspect-perl/current/t/33_feature_exception.t
    branches/upstream/libaspect-perl/current/t/listenable.t
    branches/upstream/libaspect-perl/current/t/singleton.t

Modified: branches/upstream/libaspect-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/Changes?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/Changes (original)
+++ branches/upstream/libaspect-perl/current/Changes Thu Jan  7 04:37:08 2010
@@ -1,4 +1,9 @@
 Revision history for Perl extension Aspect
+
+0.31 Thu  7 Jan 2010 - Adam Kennedy
+	- Removed the loading of Aspect::Library::Memoize and
+	  Aspect::Library::TestClass in 01_compile.t which was causing
+	  installation failure.
 
 0.30 Thu  7 Jan 2010 - Adam Kennedy
 	- Extended the forever currying support to the overall Aspect itself,

Modified: branches/upstream/libaspect-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/META.yml?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/META.yml (original)
+++ branches/upstream/libaspect-perl/current/META.yml Thu Jan  7 04:37:08 2010
@@ -1,5 +1,5 @@
 ---
-abstract: 'Aspect-oriented programming (AOP) for Perl'
+abstract: 'Aspect-Oriented Programming (AOP) for Perl'
 author:
   - 'Adam Kennedy <adamk at cpan.org>'
 build_requires:
@@ -32,4 +32,4 @@
   ChangeLog: http://fisheye2.atlassian.com/changelog/cpan/trunk/Aspect
   license: http://dev.perl.org/licenses/
   repository: http://svn.ali.as/cpan/trunk/Aspect
-version: 0.30
+version: 0.31

Modified: branches/upstream/libaspect-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/README?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/README (original)
+++ branches/upstream/libaspect-perl/current/README Thu Jan  7 04:37:08 2010
@@ -1,15 +1,18 @@
 NAME
-    Aspect - Aspect-oriented programming (AOP) for Perl
+    Aspect - Aspect-Oriented Programming (AOP) for Perl
 
 SYNOPSIS
       package Person;
       
   sub create      { ... }
-      sub set_name    { ... }
-      sub get_address { ... }
+      
+  sub set_name    { ... }
+      
+  sub get_address { ... }
       
   package main;
-      use Aspect;
+      
+  use Aspect;
       
   # Using reusable aspects
       aspect Singleton => 'Person::create';        # let there be only one Person
@@ -50,7 +53,7 @@
       } call 'Bank::Account::balance';
 
 DESCRIPTION
-    Aspect-oriented Programming (AOP) is a programming method developed by
+    Aspect-Oriented Programming (AOP) is a programming method developed by
     Xerox PARC and others. The basic idea is that in complex class systems
     there are certain aspects or behaviors that cannot normally be expressed
     in a coherent, concise and precise way. One example of such aspects are
@@ -477,6 +480,12 @@
     You can find AOP examples in the "examples/" directory of the
     distribution.
 
+    Aspect::Library::Memoize
+
+    Aspect::Library::Profiler
+
+    Aspect::Library::Trace
+
 COPYRIGHT AND LICENSE
     Copyright 2001 by Marcel Grünauer
 

Modified: branches/upstream/libaspect-perl/current/lib/Aspect.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect.pm Thu Jan  7 04:37:08 2010
@@ -29,7 +29,7 @@
 use Aspect::Pointcut::OrOp  ();
 use Aspect::Pointcut::NotOp ();
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 our @ISA     = 'Exporter';
 our @EXPORT  = qw{ aspect around before after call cflow };
 
@@ -113,17 +113,20 @@
 
 =head1 NAME
 
-Aspect - Aspect-oriented programming (AOP) for Perl
+Aspect - Aspect-Oriented Programming (AOP) for Perl
 
 =head1 SYNOPSIS
 
   package Person;
   
   sub create      { ... }
+  
   sub set_name    { ... }
+  
   sub get_address { ... }
   
   package main;
+  
   use Aspect;
   
   # Using reusable aspects
@@ -166,7 +169,7 @@
 
 =head1 DESCRIPTION
 
-Aspect-oriented Programming (AOP) is a programming method developed by Xerox
+Aspect-Oriented Programming (AOP) is a programming method developed by Xerox
 PARC and others. The basic idea is that in complex class systems there are
 certain aspects or behaviors that cannot normally be expressed in a coherent,
 concise and precise way. One example of such aspects are design
@@ -220,7 +223,7 @@
 =item The Aspect
 
 An object that installs advice. A way to package advice and other Perl code,
-   so that it is reusable.
+so that it is reusable.
 
 =back
 
@@ -654,6 +657,12 @@
 You can find AOP examples in the C<examples/> directory of the
 distribution.
 
+L<Aspect::Library::Memoize>
+
+L<Aspect::Library::Profiler>
+
+L<Aspect::Library::Trace>
+
 =head1 COPYRIGHT AND LICENSE
 
 Copyright 2001 by Marcel GrE<uuml>nauer

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/Advice.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/Advice.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/Advice.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/Advice.pm Thu Jan  7 04:37:08 2010
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 
 sub new {
 	my $class = shift;

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/Advice/After.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/Advice/After.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/Advice/After.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/Advice/After.pm Thu Jan  7 04:37:08 2010
@@ -11,7 +11,7 @@
 use Aspect::Advice        ();
 use Aspect::AdviceContext ();
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 our @ISA     = 'Aspect::Advice';
 
 # NOTE: To simplify debugging of the generated code, all injected string

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/Advice/Around.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/Advice/Around.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/Advice/Around.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/Advice/Around.pm Thu Jan  7 04:37:08 2010
@@ -10,7 +10,7 @@
 use Aspect::Advice        ();
 use Aspect::AdviceContext ();
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 our @ISA     = 'Aspect::Advice';
 
 sub _install {

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/Advice/Before.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/Advice/Before.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/Advice/Before.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/Advice/Before.pm Thu Jan  7 04:37:08 2010
@@ -10,7 +10,7 @@
 use Aspect::Advice        ();
 use Aspect::AdviceContext ();
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 our @ISA     = 'Aspect::Advice';
 
 sub _install {

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/AdviceContext.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/AdviceContext.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/AdviceContext.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/AdviceContext.pm Thu Jan  7 04:37:08 2010
@@ -4,7 +4,7 @@
 use warnings;
 use Carp ();
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 
 
 

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/Library/Listenable.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/Library/Listenable.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/Library/Listenable.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/Library/Listenable.pm Thu Jan  7 04:37:08 2010
@@ -12,7 +12,7 @@
 use Aspect::Advice::Before             ();
 use Aspect::Library::Listenable::Event ();
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 our @ISA     = qw{ Aspect::Modular Exporter     };
 our @EXPORT  = qw{ add_listener remove_listener };
 

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/Library/Listenable/Event.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/Library/Listenable/Event.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/Library/Listenable/Event.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/Library/Listenable/Event.pm Thu Jan  7 04:37:08 2010
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 
 sub new {
 	my $class = shift;

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/Library/Singleton.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/Library/Singleton.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/Library/Singleton.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/Library/Singleton.pm Thu Jan  7 04:37:08 2010
@@ -6,7 +6,7 @@
 use Aspect::Advice::Before ();
 use Aspect::Pointcut::Call ();
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 our @ISA     = 'Aspect::Modular';
 
 my %CACHE = ();

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/Library/Wormhole.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/Library/Wormhole.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/Library/Wormhole.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/Library/Wormhole.pm Thu Jan  7 04:37:08 2010
@@ -8,7 +8,7 @@
 use Aspect::Pointcut::Cflow ();
 use Aspect::Pointcut::AndOp ();
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 our @ISA     = 'Aspect::Modular';
 
 sub get_advice {

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/Modular.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/Modular.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/Modular.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/Modular.pm Thu Jan  7 04:37:08 2010
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 
 sub new {
 	my $class = shift;

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut.pm Thu Jan  7 04:37:08 2010
@@ -7,7 +7,7 @@
 use Aspect::Pointcut::AndOp ();
 use Aspect::Pointcut::NotOp ();
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 
 use overload (
 	# Keep traditional boolification and stringification

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/AndOp.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/AndOp.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/AndOp.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/AndOp.pm Thu Jan  7 04:37:08 2010
@@ -4,7 +4,7 @@
 use warnings;
 use Aspect::Pointcut ();
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 our @ISA     = 'Aspect::Pointcut';
 
 sub new {

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/Call.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/Call.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/Call.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/Call.pm Thu Jan  7 04:37:08 2010
@@ -5,7 +5,7 @@
 use Carp;
 use Aspect::Pointcut ();
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 our @ISA     = 'Aspect::Pointcut';
 
 sub new {

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/Cflow.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/Cflow.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/Cflow.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/Cflow.pm Thu Jan  7 04:37:08 2010
@@ -6,7 +6,7 @@
 use Aspect::Pointcut      ();
 use Aspect::AdviceContext ();
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 our @ISA     = 'Aspect::Pointcut';
 
 sub new {

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/NotOp.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/NotOp.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/NotOp.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/NotOp.pm Thu Jan  7 04:37:08 2010
@@ -4,7 +4,7 @@
 use warnings;
 use Aspect::Pointcut ();
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 our @ISA     = 'Aspect::Pointcut';
 
 sub new {

Modified: branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/OrOp.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/OrOp.pm?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/OrOp.pm (original)
+++ branches/upstream/libaspect-perl/current/lib/Aspect/Pointcut/OrOp.pm Thu Jan  7 04:37:08 2010
@@ -4,7 +4,7 @@
 use warnings;
 use Aspect::Pointcut ();
 
-our $VERSION = '0.30';
+our $VERSION = '0.31';
 our @ISA     = 'Aspect::Pointcut';
 
 sub new {

Modified: branches/upstream/libaspect-perl/current/t/01_compile.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/t/01_compile.t?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/t/01_compile.t (original)
+++ branches/upstream/libaspect-perl/current/t/01_compile.t Thu Jan  7 04:37:08 2010
@@ -1,12 +1,14 @@
 #!/usr/bin/perl
 
 use strict;
-use warnings;
-use Test::More tests => 6;
+BEGIN {
+	$|  = 1;
+	$^W = 1;
+}
+
+use Test::More tests => 4;
 
 use_ok( 'Aspect'                      );
 use_ok( 'Aspect::Library::Listenable' );
-use_ok( 'Aspect::Library::Memoize'    );
 use_ok( 'Aspect::Library::Singleton'  );
-use_ok( 'Aspect::Library::TestClass'  );
 use_ok( 'Aspect::Library::Wormhole'   );

Modified: branches/upstream/libaspect-perl/current/t/02_advice_context.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/t/02_advice_context.t?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/t/02_advice_context.t (original)
+++ branches/upstream/libaspect-perl/current/t/02_advice_context.t Thu Jan  7 04:37:08 2010
@@ -1,7 +1,11 @@
 #!/usr/bin/perl
 
 use strict;
-use warnings;
+BEGIN {
+	$|  = 1;
+	$^W = 1;
+}
+
 use Test::More tests => 13;
 use Aspect::AdviceContext;
 

Modified: branches/upstream/libaspect-perl/current/t/11_pointcut_call.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/t/11_pointcut_call.t?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/t/11_pointcut_call.t (original)
+++ branches/upstream/libaspect-perl/current/t/11_pointcut_call.t Thu Jan  7 04:37:08 2010
@@ -1,7 +1,11 @@
 #!/usr/bin/perl
 
 use strict;
-use warnings;
+BEGIN {
+	$|  = 1;
+	$^W = 1;
+}
+
 use Test::More tests => 12;
 use Aspect;
 

Modified: branches/upstream/libaspect-perl/current/t/12_pointcut_cflow.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/t/12_pointcut_cflow.t?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/t/12_pointcut_cflow.t (original)
+++ branches/upstream/libaspect-perl/current/t/12_pointcut_cflow.t Thu Jan  7 04:37:08 2010
@@ -1,7 +1,11 @@
 #!/usr/bin/perl
 
 use strict;
-use warnings;
+BEGIN {
+	$|  = 1;
+	$^W = 1;
+}
+
 use Test::More tests => 3;
 use Aspect;
 

Modified: branches/upstream/libaspect-perl/current/t/21_advice.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/t/21_advice.t?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/t/21_advice.t (original)
+++ branches/upstream/libaspect-perl/current/t/21_advice.t Thu Jan  7 04:37:08 2010
@@ -1,7 +1,11 @@
 #!/usr/bin/perl
 
 use strict;
-use warnings;
+BEGIN {
+	$|  = 1;
+	$^W = 1;
+}
+
 use Test::More tests => 19;
 use Aspect;
 

Modified: branches/upstream/libaspect-perl/current/t/22_advice_around.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/t/22_advice_around.t?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/t/22_advice_around.t (original)
+++ branches/upstream/libaspect-perl/current/t/22_advice_around.t Thu Jan  7 04:37:08 2010
@@ -1,7 +1,11 @@
 #!/usr/bin/perl
 
 use strict;
-use warnings;
+BEGIN {
+	$|  = 1;
+	$^W = 1;
+}
+
 use Test::More tests => 25;
 use Aspect;
 

Modified: branches/upstream/libaspect-perl/current/t/31_feature_caller.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/t/31_feature_caller.t?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/t/31_feature_caller.t (original)
+++ branches/upstream/libaspect-perl/current/t/31_feature_caller.t Thu Jan  7 04:37:08 2010
@@ -5,6 +5,7 @@
 	$|  = 1;
 	$^W = 1;
 }
+
 use Test::More tests => 10;
 use Test::NoWarnings;
 use Aspect;

Modified: branches/upstream/libaspect-perl/current/t/32_feature_wantarray.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/t/32_feature_wantarray.t?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/t/32_feature_wantarray.t (original)
+++ branches/upstream/libaspect-perl/current/t/32_feature_wantarray.t Thu Jan  7 04:37:08 2010
@@ -5,6 +5,7 @@
 	$|  = 1;
 	$^W = 1;
 }
+
 use Test::More tests => 2;
 use Test::NoWarnings;
 use Aspect;

Modified: branches/upstream/libaspect-perl/current/t/33_feature_exception.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/t/33_feature_exception.t?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/t/33_feature_exception.t (original)
+++ branches/upstream/libaspect-perl/current/t/33_feature_exception.t Thu Jan  7 04:37:08 2010
@@ -4,6 +4,11 @@
 # point function throws an exception.
 
 use strict;
+BEGIN {
+	$|  = 1;
+	$^W = 1;
+}
+
 use Test::More skip_all => 'Exceptions are not implemented yet';
 use Test::More tests => 4;
 use Aspect;

Modified: branches/upstream/libaspect-perl/current/t/listenable.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/t/listenable.t?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/t/listenable.t (original)
+++ branches/upstream/libaspect-perl/current/t/listenable.t Thu Jan  7 04:37:08 2010
@@ -1,7 +1,11 @@
 #!/usr/bin/perl
 
 use strict;
-use warnings;
+BEGIN {
+	$|  = 1;
+	$^W = 1;
+}
+
 use Test::More tests => 23;
 use Test::Exception;
 use Aspect;

Modified: branches/upstream/libaspect-perl/current/t/singleton.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libaspect-perl/current/t/singleton.t?rev=50425&op=diff
==============================================================================
--- branches/upstream/libaspect-perl/current/t/singleton.t (original)
+++ branches/upstream/libaspect-perl/current/t/singleton.t Thu Jan  7 04:37:08 2010
@@ -1,7 +1,11 @@
 #!/usr/bin/perl
 
 use strict;
-use warnings;
+BEGIN {
+	$|  = 1;
+	$^W = 1;
+}
+
 use Test::More tests => 2;
 use Aspect;
 




More information about the Pkg-perl-cvs-commits mailing list