Skip to content

Instantly share code, notes, and snippets.

@hoelzro
Created June 20, 2014 01:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hoelzro/4a904953f9d8de749185 to your computer and use it in GitHub Desktop.
Save hoelzro/4a904953f9d8de749185 to your computer and use it in GitHub Desktop.
use Test;
plan 1;
my role TestRole {
}
my class TestObject does TestRole {
}
my @objects = (TestObject.new, TestObject.new, TestObject.new);
is( +(@objects.grep(* ~~ TestRole)), 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment