Index: trunk/Nebulous/t/11_client_create.t
===================================================================
--- trunk/Nebulous/t/11_client_create.t	(revision 2872)
+++ trunk/Nebulous/t/11_client_create.t	(revision 4440)
@@ -3,5 +3,5 @@
 # Copryight (C) 2004-2005  Joshua Hoblitt
 #
-# $Id: 11_client_create.t,v 1.3 2005-01-03 23:55:29 jhoblitt Exp $
+# $Id: 11_client_create.t,v 1.4 2005-06-30 02:35:06 jhoblitt Exp $
 
 use strict;
@@ -14,94 +14,94 @@
 use lib qw( ./t ./lib );
 
-use PS::IPP::IData::Client;
-use PS::IPP::IData::Util qw( :standard );
-use Test::IData;
+use Nebulous::Client;
+use Nebulous::Util qw( :standard );
+use Test::Nebulous;
 
 my $hostport = Apache::Test->config->{ 'hostport' };
 
-Test::IData->setup;
+Test::Nebulous->setup;
 
 {
     # key
-    my $idata = PS::IPP::IData::Client->new(
-        proxy => "http://$hostport/idata",
+    my $neb = Nebulous::Client->new(
+        proxy => "http://$hostport/nebulous",
     );
 
-    my $fh = $idata->create( "foo" );
+    my $fh = $neb->create( "foo" );
 
     is( ref $fh, 'GLOB', "good filehandle" );
 }
 
-Test::IData->setup;
+Test::Nebulous->setup;
 
 {
     # key, class
-    my $idata = PS::IPP::IData::Client->new(
-        proxy => "http://$hostport/idata",
+    my $neb = Nebulous::Client->new(
+        proxy => "http://$hostport/nebulous",
     );
 
-    my $fh = $idata->create( "foo", 0 );
+    my $fh = $neb->create( "foo", 0 );
 
     is( ref $fh, 'GLOB', "good filehandle" );
 }
 
-Test::IData->setup;
+Test::Nebulous->setup;
 
 {
     # key, class, volume
-    my $idata = PS::IPP::IData::Client->new(
-        proxy => "http://$hostport/idata",
+    my $neb = Nebulous::Client->new(
+        proxy => "http://$hostport/nebulous",
     );
 
-    my $fh = $idata->create( "foo", 0, "node01" );
+    my $fh = $neb->create( "foo", 0, "node01" );
 
     is( ref $fh, 'GLOB', "good filehandle" );
 }
 
-Test::IData->setup;
+Test::Nebulous->setup;
 
 {
     # key, class, volume, comment
-    my $idata = PS::IPP::IData::Client->new(
-        proxy => "http://$hostport/idata",
+    my $neb = Nebulous::Client->new(
+        proxy => "http://$hostport/nebulous",
     );
 
-    my $fh = $idata->create( "foo", 0, "node01", "this is foo" );
+    my $fh = $neb->create( "foo", 0, "node01", "this is foo" );
 
     is( ref $fh, 'GLOB', "good filehandle" );
 }
 
-Test::IData->setup;
+Test::Nebulous->setup;
 
 {
-    my $idata = PS::IPP::IData::Client->new(
-        proxy => "http://$hostport/idata",
+    my $neb = Nebulous::Client->new(
+        proxy => "http://$hostport/nebulous",
     );
 
-    $idata->create( "foo" );
-    is( $idata->create( "foo" ), undef, "object already exists" );
+    $neb->create( "foo" );
+    is( $neb->create( "foo" ), undef, "object already exists" );
 }
 
-Test::IData->setup;
+Test::Nebulous->setup;
 
 eval {
-    my $idata = PS::IPP::IData::Client->new(
-        proxy => "http://$hostport/idata",
+    my $neb = Nebulous::Client->new(
+        proxy => "http://$hostport/nebulous",
     );
 
-    $idata->create();
+    $neb->create();
 };
 like( $@, qr/2 - 4 were expected/, "no params" );
 
-Test::IData->setup;
+Test::Nebulous->setup;
 
 eval {
-    my $idata = PS::IPP::IData::Client->new(
-        proxy => "http://$hostport/idata",
+    my $neb = Nebulous::Client->new(
+        proxy => "http://$hostport/nebulous",
     );
 
-    $idata->create( 1, 2, 3, 4, 5 );
+    $neb->create( 1, 2, 3, 4, 5 );
 };
 like( $@, qr/2 - 4 were expected/, "too many params" );
 
-Test::IData->cleanup;
+Test::Nebulous->cleanup;
