diff options
Diffstat (limited to 't/lib/Role/BreakOnLoad.pm')
-rw-r--r-- | t/lib/Role/BreakOnLoad.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/t/lib/Role/BreakOnLoad.pm b/t/lib/Role/BreakOnLoad.pm new file mode 100644 index 0000000..48367a7 --- /dev/null +++ b/t/lib/Role/BreakOnLoad.pm @@ -0,0 +1,8 @@ +package Role::BreakOnLoad; +use Moose::Role; + +sub meth1 { } + +this role has a syntax error and should crash on load. + +1; |