In Page.t, place the newly created Snippet under a versionTag so that it can be cleaned up at the end of the test.
55 lines
1.4 KiB
Perl
55 lines
1.4 KiB
Perl
#-------------------------------------------------------------------
|
|
# WebGUI is Copyright 2001-2006 Plain Black Corporation.
|
|
#-------------------------------------------------------------------
|
|
# Please read the legal notices (docs/legal.txt) and the license
|
|
# (docs/license.txt) that came with this distribution before using
|
|
# this software.
|
|
#-------------------------------------------------------------------
|
|
# http://www.plainblack.com info@plainblack.com
|
|
#-------------------------------------------------------------------
|
|
|
|
##The goal of this test is to make sure the Hash_userId macro works.
|
|
|
|
use FindBin;
|
|
use strict;
|
|
use lib "$FindBin::Bin/../lib";
|
|
|
|
use WebGUI::Test;
|
|
use WebGUI::Session;
|
|
use Data::Dumper;
|
|
|
|
my $session = WebGUI::Test->session;
|
|
|
|
use Test::More; # increment this value for each test you create
|
|
|
|
my @testSets = (
|
|
{
|
|
userId => 1,
|
|
comment => q!Visitor!,
|
|
},
|
|
{
|
|
userId => 3,
|
|
comment => q!Admin!,
|
|
},
|
|
);
|
|
|
|
my $numTests = scalar @testSets;
|
|
|
|
$numTests += 1; #For the use_ok
|
|
|
|
plan tests => $numTests;
|
|
|
|
my $macro = 'WebGUI::Macro::Hash_userId';
|
|
my $loaded = use_ok($macro);
|
|
|
|
SKIP: {
|
|
|
|
skip "Unable to load $macro", $numTests-1 unless $loaded;
|
|
|
|
foreach my $testSet (@testSets) {
|
|
$session->user({userId => $testSet->{userId}});
|
|
my $output = WebGUI::Macro::Hash_userId::process($session);
|
|
is($output, $testSet->{userId}, 'testing '.$testSet->{comment});
|
|
}
|
|
|
|
}
|