summaryrefslogtreecommitdiffstats
path: root/config-db/t/22-group_client_ref.t
diff options
context:
space:
mode:
Diffstat (limited to 'config-db/t/22-group_client_ref.t')
-rw-r--r--config-db/t/22-group_client_ref.t7
1 files changed, 5 insertions, 2 deletions
diff --git a/config-db/t/22-group_client_ref.t b/config-db/t/22-group_client_ref.t
index 240fcd61..d330bc23 100644
--- a/config-db/t/22-group_client_ref.t
+++ b/config-db/t/22-group_client_ref.t
@@ -1,5 +1,8 @@
use Test::More qw(no_plan);
+use strict;
+use warnings;
+
use lib '/opt/openslx/lib';
# basic init
@@ -39,7 +42,7 @@ ok(
'client-ID 3 has been associated to group 1'
);
is(
- @clientIDs = sort($configDB->fetchClientIDsOfGroup(1)),
+ my @clientIDs = sort($configDB->fetchClientIDsOfGroup(1)),
1, "group 1 should have one client-ID"
);
is($clientIDs[0], 3, "first client of group 1 should have ID 3");
@@ -48,7 +51,7 @@ is(
0, "group 3 should have no client-ID"
);
is(
- @groupIDs = sort($configDB->fetchGroupIDsOfClient(0)),
+ my @groupIDs = sort($configDB->fetchGroupIDsOfClient(0)),
0, "default client should have no group-IDs"
);
is(