summaryrefslogtreecommitdiff
path: root/t/01conf15.t
blob: da6020334983edba1f5fc00af01d20abb86244bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# -*- perl -*-
use lib qw(t lib);
use strict;
use Test;
use TestConfig;

plan(tests => 2);
	
my $t = new TestConfig(
    lexicon => {
	load => {
	    section => {
		'*' => {
		    section => {
			mode => 1,
		    }
		}
	    }
	}
    },
    config => [
	'load.bar' => 'foo'
    ],
    expect => ['"load.bar" must be a section']
);
ok($t->errors,1);

my $t = new TestConfig(
    lexicon => {
	load => 1
    },
    config => [
	'load.bar.foo' => 'foo'
    ],
    expect => ['load: unknown section']
);
ok($t->errors,1);

	

Return to:

Send suggestions and report system problems to the System administrator.