lib/Flux/Storage.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 Flux::Storage; | ||||||
2 | { | ||||||
3 | $Flux::Storage::VERSION = '1.03'; | ||||||
4 | } | ||||||
5 | |||||||
6 | # ABSTRACT: interface to any flux storage. | ||||||
7 | |||||||
8 | 2 | 2 | 1102 | use Moo::Role; | |||
2 | 3 | ||||||
2 | 12 | ||||||
9 | with 'Flux::Out'; | ||||||
10 | |||||||
11 | requires 'in'; | ||||||
12 | |||||||
13 | |||||||
14 | 1; | ||||||
15 | |||||||
16 | __END__ |