TT#7029 Make deletion quiet again

Change-Id: I2efe78891c7532baafc4238c6a37702326ca414d
changes/86/10486/2
Irina Peshinskaya 9 years ago
parent fcb03e435c
commit d31c66cdd5

@ -8,6 +8,7 @@ use Data::Dumper;
my $test_machine = Test::Collection->new(
name => 'cfdestinationsets',
QUIET_DELETION => 1,
);
my $fake_data = Test::FakeData->new;

@ -9,6 +9,7 @@ use Data::Dumper;
#init test_machine
my $test_machine = Test::Collection->new(
name => 'domains',
QUIET_DELETION => 0,
);
$test_machine->methods->{collection}->{allowed} = {map {$_ => 1} qw(GET HEAD OPTIONS POST)};
$test_machine->methods->{item}->{allowed} = {map {$_ => 1} qw(GET HEAD OPTIONS DELETE)};

@ -9,6 +9,7 @@ use Data::Dumper;
my $test_machine = Test::Collection->new(
name => 'subscribers',
QUIET_DELETION => 1,
);
my $fake_data = Test::FakeData->new;

@ -51,7 +51,7 @@ has 'DEBUG_ONLY' => (
has 'QUIET_DELETION' => (
is => 'rw',
isa => 'Bool',
default => 0,
default => 1,
);
has 'ALLOW_EMPTY_COLLECTION' => (
is => 'rw',

Loading…
Cancel
Save