File: v2_16_hasParameter.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 (35 lines) | stat: -rw-r--r-- 751 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
# 16_hasParameter.t
#
# Tests the traditional usage for backwards compatibility

use Parse::PlainConfig::Legacy;

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

my $test    = 1;
my $conf    = new Parse::PlainConfig::Legacy;
my $testrc  = "./t/v2_testrc";
my ($val, $val2);
$conf->read($testrc);
$conf->property(DEFAULTS => 
  {
  NOT_PRESENT   => 1,
  });

# 1 Test key that exists in the defaults hash
$rv = $conf->hasParameter('NOT_PRESENT');
$rv ? print "ok $test\n" : print "not ok $test\n";
$test++;

# 2 Test present key
$rv = $conf->hasParameter('SCALAR 1');
$rv ? print "ok $test\n" : print "not ok $test\n";
$test++;

# 3 Test invalid key
$rv = ! $conf->hasParameter('NOT_THERE');
$rv ? print "ok $test\n" : print "not ok $test\n";
$test++;

# end 16_hasParameter.t