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

plan(tests => 1);

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

__DATA__
# This is a sample configuration file    
[core]
	retain-interval = 10
	tempdir = /tmp
[backend foo]
	file = a
    
    

Return to:

Send suggestions and report system problems to the System administrator.