~ubuntu-branches/ubuntu/utopic/libdbd-csv-perl/utopic-proposed

« back to all changes in this revision

Viewing changes to t/73_csv-case.t

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann, Nicholas Bamber, Ansgar Burchardt, gregor herrmann
  • Date: 2011-02-12 21:34:28 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20110212213428-6wd71j0iicbugnx5
Tags: 0.3100-1
[ Nicholas Bamber ]
* Added myself to Uploaders 
* New upstream release
* Upped standards version to 3,9.1
* Refreshed copyright
* Reviewed patch
* Updated dependencies

[ Ansgar Burchardt ]
* Update my email address.

[ gregor herrmann ]
* Add perl (>= 5.10.1) as an alternative build dependency for Test::More.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/perl
2
2
 
3
3
use strict;
4
 
use Test::More "no_plan"; #tests => 66;
 
4
use warnings;
 
5
use Test::More;
5
6
 
6
7
BEGIN { use_ok ("DBI"); }
7
8
do "t/lib.pl";
58
59
 
59
60
ok ($dbh->disconnect,                           "disconnect");
60
61
undef $dbh;
 
62
 
 
63
done_testing ();