Skip to content

Instantly share code, notes, and snippets.

@tobyink
Created March 18, 2013 21:12
Show Gist options
  • Select an option

  • Save tobyink/5190855 to your computer and use it in GitHub Desktop.

Select an option

Save tobyink/5190855 to your computer and use it in GitHub Desktop.
use v5.14;
use Test::More tests => 1;
package RRR {
use Moo::Role;
around BUILDARGS => sub { ::pass("got here") };
}
package CCC {
use Moo;
with "RRR";
}
CCC->new;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment