summaryrefslogtreecommitdiff
path: root/t/conf01.t
blob: 5c91f7f432f5002e0cacf8c5c80d273037c8d072 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- perl -*-
use lib qw(t lib);
use strict;
use Test;
use TestConfig;

plan(tests => 1);

my $cfg = new TestConfig(
    config => [
	'core.retain-interval' => '10',
	'core.tempdir' => '/tmp',
	'backend.foo.file' => 'a'
    ]
);
ok($cfg->canonical, 'backend.foo.file="a" core.retain-interval=10 core.tempdir="/tmp"');
    
    

Return to:

Send suggestions and report system problems to the System administrator.