summaryrefslogtreecommitdiffstats
path: root/config-db/t/20-client_system_ref.t
diff options
context:
space:
mode:
authorOliver Tappe2008-01-04 17:50:15 +0100
committerOliver Tappe2008-01-04 17:50:15 +0100
commit9507d838668846666d2c790a0a1e6e51eb8670de (patch)
tree2c843db4b2865319b8d26604c212c5fea07e5bbc /config-db/t/20-client_system_ref.t
parentmore work at refactoring of the way attributes are handled: (diff)
downloadcore-9507d838668846666d2c790a0a1e6e51eb8670de.tar.gz
core-9507d838668846666d2c790a0a1e6e51eb8670de.tar.xz
core-9507d838668846666d2c790a0a1e6e51eb8670de.zip
more refactoring (not limited to attribute handling)
* completed separation of attributes and standard (column) values * improved tests a lot That work is still not finished, so expect things to fail horribly. git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1443 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db/t/20-client_system_ref.t')
-rw-r--r--config-db/t/20-client_system_ref.t7
1 files changed, 5 insertions, 2 deletions
diff --git a/config-db/t/20-client_system_ref.t b/config-db/t/20-client_system_ref.t
index 646050e3..46e56ddf 100644
--- a/config-db/t/20-client_system_ref.t
+++ b/config-db/t/20-client_system_ref.t
@@ -1,5 +1,8 @@
use Test::More qw(no_plan);
+use strict;
+use warnings;
+
use lib '/opt/openslx/lib';
# basic init
@@ -40,7 +43,7 @@ ok(
'system-ID 3 has been associated to client 1'
);
is(
- @systemIDs = sort($configDB->fetchSystemIDsOfClient(0)),
+ my @systemIDs = sort($configDB->fetchSystemIDsOfClient(0)),
0, "default client should have no system-ID"
);
is(
@@ -53,7 +56,7 @@ is(
0, "client 3 should have no system-ID"
);
is(
- @clientIDs = sort($configDB->fetchClientIDsOfSystem(0)),
+ my @clientIDs = sort($configDB->fetchClientIDsOfSystem(0)),
0, "default system should have no client-IDs"
);
is(