--- /dev/null
+use strict;
+use warnings;
+use Test::More tests => 6;
+
+{
+ package Headers;
+ use Mouse;
+ has 'foo' => ( is => 'rw' );
+}
+
+{
+ package Response;
+ use Mouse;
+ use Mouse::TypeRegistry;
+
+ subtype 'HeadersType' => sub { defined $_ && eval { $_->isa('Headers') } };
+ coerce 'HeadersType' => +{
+ HashRef => sub {
+ Headers->new(%{ $_ });
+ },
+ };
+
+ has headers => (
+ is => 'rw',
+ isa => 'HeadersType',
+ coerce => 1,
+ );
+ has lazy_build_coerce_headers => (
+ is => 'rw',
+ isa => 'HeadersType',
+ coerce => 1,
+ lazy_build => 1,
+ );
+ sub _build_lazy_build_coerce_headers {
+ Headers->new(foo => 'laziness++')
+ }
+ has lazy_coerce_headers => (
+ is => 'rw',
+ isa => 'HeadersType',
+ coerce => 1,
+ lazy => 1,
+ default => sub { Headers->new(foo => 'laziness++') }
+ );
+}
+
+my $r = Response->new(headers => { foo => 'bar' });
+isa_ok($r->headers, 'Headers');
+is($r->headers->foo, 'bar');
+$r->headers({foo => 'yay'});
+isa_ok($r->headers, 'Headers');
+is($r->headers->foo, 'yay');
+is($r->lazy_coerce_headers->foo, 'laziness++');
+is($r->lazy_build_coerce_headers->foo, 'laziness++');
+
--- /dev/null
+use strict;
+use warnings;
+use Test::More tests => 8;
+
+{
+ package Response::Headers;
+ use Mouse;
+ has 'foo' => ( is => 'rw' );
+}
+{
+ package Request::Headers;
+ use Mouse;
+ has 'foo' => ( is => 'rw' );
+}
+
+{
+ package Response;
+ use Mouse;
+ use Mouse::TypeRegistry;
+
+ subtype 'Headers' => sub { defined $_ && eval { $_->isa('Response::Headers') } };
+ coerce 'Headers' => +{
+ HashRef => sub {
+ Response::Headers->new(%{ $_ });
+ },
+ };
+
+ has headers => (
+ is => 'rw',
+ isa => 'Headers',
+ coerce => 1,
+ );
+}
+
+{
+ package Request;
+ use Mouse;
+ use Mouse::TypeRegistry;
+
+ subtype 'Headers' => sub { defined $_ && eval { $_->isa('Request::Headers') } };
+ coerce 'Headers' => +{
+ HashRef => sub {
+ Request::Headers->new(%{ $_ });
+ },
+ };
+
+ has headers => (
+ is => 'rw',
+ isa => 'Headers',
+ coerce => 1,
+ );
+}
+
+{
+ package Response;
+ subtype 'Headers' => sub { defined $_ && eval { $_->isa('Response::Headers') } };
+ coerce 'Headers' => +{
+ HashRef => sub {
+ Response::Headers->new(%{ $_ });
+ },
+ };
+}
+
+my $req = Request->new(headers => { foo => 'bar' });
+isa_ok($req->headers, 'Request::Headers');
+is($req->headers->foo, 'bar');
+$req->headers({foo => 'yay'});
+isa_ok($req->headers, 'Request::Headers');
+is($req->headers->foo, 'yay');
+
+my $res = Response->new(headers => { foo => 'bar' });
+isa_ok($res->headers, 'Response::Headers');
+is($res->headers->foo, 'bar');
+$res->headers({foo => 'yay'});
+isa_ok($res->headers, 'Response::Headers');
+is($res->headers->foo, 'yay');