| blib/lib/Moops/TraitFor/Keyword/mutable.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 14 | 14 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 5 | 5 | 100.0 |
| pod | n/a | ||
| total | 19 | 19 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | 1 | 1 | 618 | use v5.14; | |||
| 1 | 3 | ||||||
| 2 | 1 | 1 | 6 | use strict; | |||
| 1 | 1 | ||||||
| 1 | 29 | ||||||
| 3 | 1 | 1 | 5 | use warnings FATAL => 'all'; | |||
| 1 | 2 | ||||||
| 1 | 49 | ||||||
| 4 | 1 | 1 | 5 | no warnings qw(void once uninitialized numeric); | |||
| 1 | 2 | ||||||
| 1 | 97 | ||||||
| 5 | |||||||
| 6 | package Moops::TraitFor::Keyword::mutable; | ||||||
| 7 | |||||||
| 8 | our $AUTHORITY = 'cpan:TOBYINK'; | ||||||
| 9 | our $VERSION = '0.038'; | ||||||
| 10 | |||||||
| 11 | 1 | 1 | 7 | use Moo::Role; | |||
| 1 | 2 | ||||||
| 1 | 7 | ||||||
| 12 | |||||||
| 13 | around should_make_immutable => sub { 0 }; | ||||||
| 14 | |||||||
| 15 | 1; |