File: 03var.t

package info (click to toggle)
fusioninventory-agent 1%3A2.6-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 27,492 kB
  • sloc: perl: 120,896; xml: 9,459; sh: 760; python: 26; makefile: 13
file content (34 lines) | stat: -rwxr-xr-x 862 bytes parent folder | download | duplicates (6)
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
#!/usr/bin/perl

use strict;
use warnings;

use Test::More;
use UNIVERSAL::require;
use English qw(-no_match_vars);

plan(skip_all => 'Author test, set $ENV{TEST_AUTHOR} to a true value to run')
    if !$ENV{TEST_AUTHOR};

plan(skip_all => 'Test::Vars required')
    unless Test::Vars->require();

Test::Vars->import();

if ($OSNAME eq 'MSWin32') {
    push @INC, 't/lib/fake/unix';
} else {
    push @INC, 't/lib/fake/windows';
}

all_vars_ok(
    ignore_vars => {
        '%params'   => 1,
        '$class'    => 1,
        '$request'  => 1, # FusionInventory::Agent::HTTP::Server
        '$clientIp' => 1, # FusionInventory::Agent::HTTP::Server
        '$num'      => 1, # Task::Inventory::Input::Solaris::Networks
        '$i'        => 1, # FusionInventory::Agent::Tools::Solaris
        '$type'     => 1, # FusionInventory::Agent::Tools::Hardware
    }
);