~ubuntu-branches/ubuntu/trusty/libdevel-pragma-perl/trusty-proposed

« back to all changes in this revision

Viewing changes to t/test_2.pm

  • Committer: Package Import Robot
  • Author(s): Damyan Ivanov, gregor herrmann, Salvatore Bonaccorso, Damyan Ivanov
  • Date: 2013-10-22 09:41:47 UTC
  • mfrom: (2.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20131022094147-27vu2s1k6ypp0a7p
Tags: 0.60-1
* Team upload

[ gregor herrmann ]
* debian/control: update {versioned,alternative} (build) dependencies.

[ Salvatore Bonaccorso ]
* Change Vcs-Git to canonical URI (git://anonscm.debian.org)
* Change search.cpan.org based URIs to metacpan.org based URIs

[ Damyan Ivanov ]
* Imported Upstream version 0.60
* add years to main upstream copyright notice
* add ppport.h to debian/copyright (how did this escape NEW review?)
* update (build-)dependencies
* bump debhelper build-dependency to ensure hardening support
* claim conformance with Policy 3.9.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package test_2;
2
 
 
3
 
use strict;
4
 
use warnings;
5
 
 
6
 
our $test;
7
 
 
8
 
# 0 for failure if the key has leaked
9
 
# 1 for success if it hasn't
10
 
BEGIN { $test = exists($^H{'Devel::Pragma::Test'}) ? 0 : 1 }
11
 
 
12
 
sub test() { $test }
13
 
 
14
 
1;