~ubuntu-branches/ubuntu/natty/libconfig-inifiles-perl/natty

« back to all changes in this revision

Viewing changes to t/12open-empty-file.t

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2010-10-16 17:21:21 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20101016172121-hfha61qoyx5o0mk4
Tags: 2.58-1
* New upstream release.
* Stop using svn-upgrade in watch file.
* Use source format 3.0 (quilt), and ease building with
  git-buildpackage: Git-ignore quilt .pc dir, and add source
  local-options.
* Drop locally included CDBS snippets, and local implementation of
  DEB_MAINTAINER_MODE, all included in main cdbs now.
* Ease backporting to Debian stable: Relax inclusion of CDBS snippets
  required only in DEB_MAINTAINER_MODE, and suppress related build-
  dependencies.
* Extend copyright years in rules file, and refer to FSF website (not
  postal address).
* Rewrite copyright file using draft rev135 of DEP5 format.
* Bump Policy compliance to standards-version 3.9.1.
* Shorten Vcs-* stanzas.
* Update DEB_UPSTREAM_URL, to fix get-orig-source rule.
* Build-depend on libtest-simple-perl.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
use Config::IniFiles;
10
10
 
11
 
my $filename = File::Spec->catfile("t", "empty.ini");
 
11
use lib "./t/lib";
 
12
 
 
13
use Config::IniFiles::TestPaths;
 
14
 
 
15
my $filename = t_file("empty.ini");
12
16
 
13
17
{
14
18
    my $cfg=Config::IniFiles->new;
22
26
    isa_ok ($cfg, "Config::IniFiles", '$cfg');
23
27
}
24
28
 
25
 
unlink($filename);
 
29
t_unlink("empty.ini");