~ubuntu-branches/ubuntu/oneiric/libconfig-auto-perl/oneiric

« back to all changes in this revision

Viewing changes to t/debconf.t

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghedini, gregor herrmann, Rene Mayorga
  • Date: 2011-02-28 17:48:18 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20110228174818-uqiabt4c03l2tsk1
Tags: 0.32-1
* New upstream release
* Switch to 3.0 (quilt)
* Bump debhelper to 8
* Remove/update versioned dependencies
* Add myself to Uploaders and debian/copyright
* Switch to short-form dh
* Bump Standards-Version (no changes needed)
* Add libio-string-perl to (Build-)Depends(-Indep)
* Bump Standards-Version (no changes needed)

[ gregor herrmann ]
* debian/control: Changed: Switched Vcs-Browser field to ViewSVN
  (source stanza).
* Change my email address.
* debian/control: lowercase short description; mention module name in long
  description.

[ Rene Mayorga ]
* debian/control: update my email address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
use Test::More tests => 4;
2
 
 
3
 
use strict;
4
 
use warnings;
5
 
no warnings qw(once);
6
 
 
7
 
use File::Spec::Functions;
8
 
 
9
 
use_ok('Config::Auto');
10
 
 
11
 
my $config=Config::Auto::parse('deb.conf',path => catdir('t','config'));
12
 
 
13
 
is($Config::Auto::Format,'equal','Config file equal formatted');
14
 
is($config->{MOZILLA_DSP},'auto');
15
 
is($config->{USE_GDKXFT},'false');