~ubuntu-branches/ubuntu/quantal/libdbd-csv-perl/quantal

« back to all changes in this revision

Viewing changes to t/71_csv-ext.t

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann, Jonathan Yu, gregor herrmann
  • Date: 2010-04-08 23:51:52 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100408235152-j0wq3jrc7y699hvx
Tags: 0.2800-1
[ Jonathan Yu ]
* New upstream release 0.27
* Rewrite control description

[ gregor herrmann ]
* New upstream release 0.28 (closes: #576672).
* Remove minimumversion patch, the test was moved to xt/. Remove build
  dependency on libtest-minimumversion-perl.
* Convert to source format 3.0 (quilt). Remove quilt framework.
* Bump versioned (build) dependencies according to new upstream
  requirements.
* debian/copyright: update years of upstream and packaging copyright; update
  formatting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
ok (!-f DbFile ($tbl),                          "does not exist");
35
35
 
36
36
foreach my $ext (@ext) {
37
 
    like (my $def = TableDefinition ($tbl.$ext, @tbl_def),
38
 
        qr{^create table $tbl}i,                "table definition");
 
37
    my $qt = '"'.$tbl.$ext.'"';
 
38
    like (my $def = TableDefinition ($qt, @tbl_def),
 
39
        qr{^create table $qt}i,                 "table definition");
39
40
    ok ($dbh->do ($def),                        "create table $ext");
40
41
    ok (-f DbFile ($tbl.$ext),                  "does exists");
41
42
    }