check whole API for all test users
[cloudstore.git] / t / API.t
diff --git a/t/API.t b/t/API.t
index 0b31f9c..99d1831 100755 (executable)
--- a/t/API.t
+++ b/t/API.t
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 27;
+use Test::More tests => 26;
 use Data::Dump qw(dump);
 
 use lib 'lib';
@@ -11,9 +11,7 @@ use_ok 'CloudStore::API';
 
 ok my $o = CloudStore::API->new('s1'), 'new';
 
-ok exists $o->{SLICE}, 'SLICE';
-
-cmp_ok $o->create_user('md5@example.com','md5sum',0), '==', 2000, 'create_user md5';
+cmp_ok $o->create_user('md5@example.com','md5sum',0), 'eq', 'u2000', 'create_user md5';
 
 ok my $info = $o->user_info( 'md5' ), 'user_info';
 diag dump $info;