~ubuntu-branches/ubuntu/utopic/libtk-dirselect-perl/utopic

« back to all changes in this revision

Viewing changes to test.pl

  • Committer: Bazaar Package Importer
  • Author(s): Dominique Dumont, Nathan Handler, Salvatore Bonaccorso, Dominique Dumont, gregor herrmann
  • Date: 2010-02-27 20:53:47 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100227205347-5ok1xlvusp7s68yz
Tags: 1.12-1
[ Nathan Handler ]
* debian/watch: Update to ignore development releases.

[ Salvatore Bonaccorso ]
* debian/control: Changed: Replace versioned (build-)dependency on
  perl (>= 5.6.0-{12,16}) with an unversioned dependency on perl (as
  permitted by Debian Policy 3.8.3).

[ Dominique Dumont ]
* New upstream release
* debian/copyright: updated years and upstream license
* debian/control: updated to standard version 3.8.4

[ gregor herrmann ]
* Minimize debian/rules.
* debian/control: remove version from perl-tk (build) dependency, fulfilled
  since at least oldstable; add libtest-pod-perl to Build-Depends-Indep; add
  libtest-pod-coverage-perl to Build-Conflicts-Indep.
* debian/copyright: update formatting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Before `make install' is performed this script should be runnable with
2
 
# `make test'. After `make install' it should work as `perl test.pl'
3
 
 
4
 
#########################
5
 
 
6
 
# change 'tests => 1' to 'tests => last_test_to_print';
7
 
 
8
 
use Test;
9
 
BEGIN { plan tests => 1 };
10
 
use Tk::DirSelect;
11
 
ok(1); # If we made it this far, we're ok.
12
 
 
13
 
#########################
14
 
 
15
 
# Insert your test code below, the Test module is use()ed here so read
16
 
# its man page ( perldoc Test ) for help writing this test script.
17