~ubuntu-branches/ubuntu/utopic/libconfig-auto-perl/utopic-proposed

« back to all changes in this revision

Viewing changes to t/06_const_it.t

  • Committer: Package Import Robot
  • Author(s): Salvatore Bonaccorso
  • Date: 2012-02-07 22:10:30 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20120207221030-gxbqq7x9zp0q6ts4
Tags: 0.42-1
* Imported Upstream version 0.42
* Drop test-file-for-06_const_it.t-test.patch patch.
  This is not needed anymore as upstream has added a testfile to test
  against.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!perl
2
2
 
3
 
use Test::More;
 
3
use Test::More 'no_plan';
4
4
use strict;
5
5
 
6
6
use Config::Auto;
7
7
 
8
 
my $test_file = "/etc/dpkg/dpkg.cfg";
 
8
my $test_file = 't/fstab'; # A file found on any Unix/Linux machine.
9
9
 
10
10
SKIP: {
11
11
    skip "Can't test: $test_file doesn't exist on this system."
18
18
        diag($@) if $@;
19
19
    }
20
20
}
21
 
 
22
 
done_testing();