add some more tests (including some TODOs)
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Hash / clear.pm
CommitLineData
44babf1f 1package Moose::Meta::Method::Accessor::Native::Hash::clear;
2
3use strict;
4use warnings;
5
10bd99ec 6our $VERSION = '1.14';
44babf1f 7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
8b9641b8 10use Moose::Role;
11
12with 'Moose::Meta::Method::Accessor::Native::Hash::Writer' => {
13 -excludes => [
14 qw(
15 _maximum_arguments
16 _inline_optimized_set_new_value
17 )
18 ]
19};
44babf1f 20
21sub _maximum_arguments { 0 }
22
23sub _adds_members { 0 }
24
25sub _potential_value { return '{}' }
26
27sub _inline_optimized_set_new_value {
28 my ( $self, $inv, $new, $slot_access ) = @_;
29
584540d9 30 return "$slot_access = {}";
44babf1f 31}
32
8b9641b8 33no Moose::Role;
34
44babf1f 351;