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

« back to all changes in this revision

Viewing changes to t/Tester/tbt_09do_script.pl

  • 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:
 
1
#!/usr/bin/perl
 
2
 
 
3
use strict;
 
4
use warnings;
 
5
 
 
6
isnt($0, __FILE__, 'code is not executing directly');
 
7
 
 
8
test_out("not ok 1 - one");
 
9
test_fail(+1);
 
10
ok(0,"one");
 
11
test_test('test_fail caught fail message inside a do');
 
12
 
 
13
1;