blib/lib/Translate/Fluent/Elements/PatternElement.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 3 | 3 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 1 | 1 | 100.0 |
pod | n/a | ||
total | 4 | 4 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Translate::Fluent::Elements::PatternElement; | ||||||
2 | |||||||
3 | 6 | 6 | 39 | use Moo; | |||
6 | 16 | ||||||
6 | 31 | ||||||
4 | extends 'Translate::Fluent::Elements::Base'; | ||||||
5 | |||||||
6 | has [qw(inline_text block_text inline_placeable block_placeable)] => ( | ||||||
7 | is => 'ro', | ||||||
8 | default => sub { undef }, | ||||||
9 | ); | ||||||
10 | |||||||
11 | |||||||
12 | 1; | ||||||
13 | __END__ |