~ubuntu-branches/ubuntu/trusty/libperl5i-perl/trusty-proposed

« back to all changes in this revision

Viewing changes to t/try-tiny.t

  • Committer: Bazaar Package Importer
  • Author(s): Ivan Kohler
  • Date: 2010-05-08 17:42:00 UTC
  • Revision ID: james.westby@ubuntu.com-20100508174200-7ogg0zrimh9gvcuw
Tags: upstream-2.1.1
ImportĀ upstreamĀ versionĀ 2.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/perl
 
2
 
 
3
use perl5i::latest;
 
4
 
 
5
use lib 't/lib';
 
6
use Test::More;
 
7
use Test::perl5i;
 
8
 
 
9
lives_ok {
 
10
    try {
 
11
        die "This should not die";
 
12
    } catch {
 
13
        "this worked";
 
14
    };
 
15
} 'Dying inside a try {} block is captured via Try::Tiny';
 
16
 
 
17
done_testing();