
Mock::Quick::Object::Control - Control a mocked object after creation

Control a mocked object after creation.

my $obj = Mock::Quick::Object->new( ... );
my $control = Mock::Quick::Object::Control->new( $obj );
$control->set_methods( foo => sub { 'foo' });
$control->set_attributes( bar => 'baz' );
# Make an attribute exist so that it can be used for get/set operations.
$control->set_attributes( empty => undef );

Set/Create methods
Set/Create attributes (simple get/set accessors)
Remove attributes/methods.
Enable/Disable strict mode.
Returns a hash where keys are method names, and values are the number of times the method has been called. When a method is altered or removed the key is deleted.

Chad Granum exodist7@gmail.com

Copyright (C) 2011 Chad Granum
Mock-Quick is free software; Standard perl licence.
Mock-Quick is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the license for more details.