IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 13059


Ignore:
Timestamp:
Apr 27, 2007, 11:36:20 AM (19 years ago)
Author:
jhoblitt
Message:

add $volume param to ->cull()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/t/53_client_cull.t

    r5667 r13059  
    33# Copryight (C) 2004-2005  Joshua Hoblitt
    44#
    5 # $Id: 53_client_cull.t,v 1.1 2005-12-03 02:52:31 jhoblitt Exp $
     5# $Id: 53_client_cull.t,v 1.2 2007-04-27 21:36:20 jhoblitt Exp $
    66
    77use strict;
     
    3838Test::Nebulous->setup;
    3939
    40 SKIP: {
    41     skip "unsure if this should be part of the API", 2;
     40{
    4241
    4342    # key, $volume
     
    7776Test::Nebulous->setup;
    7877
    79 SKIP: {
    80     skip "unsure if this should be part of the API", 4;
     78{
    8179
    8280    # key, $volume
     
    117115    $neb->cull();
    118116};
    119 like( $@, qr/1 was expected/, "no params" );
     117like( $@, qr/1 - 2 were expected/, "no params" );
    120118
    121119Test::Nebulous->setup;
     
    125123        proxy => "http://$hostport/nebulous",
    126124    );
    127     $neb->cull( 1, 2 );
     125    $neb->cull( 1, 2, 3 );
    128126};
    129 like( $@, qr/1 was expected/, "too many params" );
     127like( $@, qr/1 - 2 were expected/, "too many params" );
    130128
    131129Test::Nebulous->cleanup;
Note: See TracChangeset for help on using the changeset viewer.