File: v2_12_purge.t

package info (click to toggle)
libparse-plainconfig-perl 3.07-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 360 kB
  • sloc: perl: 1,916; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 909 bytes parent folder | download | duplicates (5)
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
# 12_purge.t
#
# Tests the purge and autopurge functionality

use Parse::PlainConfig::Legacy;

$|++;
print "1..5\n";

my $test    = 1;
my $conf    = new Parse::PlainConfig::Legacy;
my $testrc  = "./t/v2_testrc";
my ($val, $val2, @params);
$conf->read($testrc);

# 1 & 2 Test purge
@params = $conf->parameters();
@params ? print "ok $test\n" : print "not ok $test\n";
$test++;
$conf->purge();
@params = $conf->parameters();
@params ? print "not ok $test\n" : print "ok $test\n";
$test++;

# 3 .. 5 Test autopurge
$conf->read;
$conf->parameter("FOO" => "BAR");
@params = $conf->parameters();
grep(/^FOO$/, @params) ? print "ok $test\n" : print "not ok $test\n";
$test++;
$conf->property("AUTOPURGE" => 1);
$conf->read;
@params = $conf->parameters();
grep(/^FOO$/, @params) ? print "not ok $test\n" : print "ok $test\n";
$test++;
@params ? print "ok $test\n" : print "not ok $test\n";
$test++;

# end 12_purge.t