~ubuntu-branches/ubuntu/wily/libapp-cmd-perl/wily

« back to all changes in this revision

Viewing changes to lib/App/Cmd/Tester.pm

  • Committer: Bazaar Package Importer
  • Author(s): Salvatore Bonaccorso
  • Date: 2011-03-18 20:49:38 UTC
  • mfrom: (1.2.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20110318204938-s1hetgw1k1jxc7ix
Tags: 0.311-1
* New upstream release
* debian/copyright: Refresh upstreams copyright information.
* Bump Debhelper compat level to 8.
* debian/control: Bump versioned Build-Depends on debhelper to (>= 8).

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
use warnings;
3
3
package App::Cmd::Tester;
4
4
BEGIN {
5
 
  $App::Cmd::Tester::VERSION = '0.310';
 
5
  $App::Cmd::Tester::VERSION = '0.311';
6
6
}
7
7
 
8
8
# ABSTRACT: for capturing the result of running an app
67
67
{
68
68
  package App::Cmd::Tester::Result;
69
69
BEGIN {
70
 
  $App::Cmd::Tester::Result::VERSION = '0.310';
 
70
  $App::Cmd::Tester::Result::VERSION = '0.311';
71
71
}
72
72
 
73
73
  sub new {
86
86
{
87
87
  package App::Cmd::Tester::Exited;
88
88
BEGIN {
89
 
  $App::Cmd::Tester::Exited::VERSION = '0.310';
 
89
  $App::Cmd::Tester::Exited::VERSION = '0.311';
90
90
}
91
91
  sub throw {
92
92
    my ($class, $code) = @_;
106
106
 
107
107
=head1 VERSION
108
108
 
109
 
version 0.310
 
109
version 0.311
110
110
 
111
111
=head1 SYNOPSIS
112
112
 
168
168
 
169
169
=head1 COPYRIGHT AND LICENSE
170
170
 
171
 
This software is copyright (c) 2010 by Ricardo Signes.
 
171
This software is copyright (c) 2011 by Ricardo Signes.
172
172
 
173
173
This is free software; you can redistribute it and/or modify it under
174
174
the same terms as the Perl 5 programming language system itself.