File Coverage

gen/syn-HH_Unispool_Config_Entry_RemoteSystem_7.pl
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1 1     1   657 use strict;
  1         3  
  1         39  
2              
3 1     1   6 use HH::Unispool::Config;
  1         2  
  1         23  
4 1     1   6 use HH::Unispool::Config::OS;
  1         2  
  1         21  
5 1     1   6 use HH::Unispool::Config::Scope;
  1         2  
  1         22  
6 1     1   6 use HH::Unispool::Config::Entry::System;
  1         3  
  1         23  
7 1     1   7 use HH::Unispool::Config::Entry::RemoteSystem::7;
  1         2  
  1         158  
8              
9             # Create a config from scratch with a _Local_ scope
10             my $conf = HH::Unispool::Config->new( {
11             scope => HH::Unispool::Config::Scope->new ( {
12             scope => [ qw( _Local_) ],
13             } ),
14             } );
15              
16             # Create the _Local_ system and add it to the configuration
17             my $sysn = HH::Unispool::Config::Entry::System->new( {
18             name => '_Local_',
19             local_system_name => 'foo',
20             network_name => 'foo.bar.org',
21             os => HH::Unispool::Config::OS->new( {
22             os => 'Solaris',
23             } ),
24             } );
25             $conf->add_system($sysn);
26              
27             # Add a type 7 remote system to _Local_
28             my $dev = HH::Unispool::Config::Entry::RemoteSystem::7->new( {
29             name => 'rsys7',
30             } );
31             $sysn->add_remote_system($dev);
32              
33             # Write the configuration
34             $conf->write('t/config.sample.r7.out');
35             1;