| blib/lib/Compress/Stream/Zstd/DecompressionDictionary.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 17 | 17 | 100.0 |
| branch | 1 | 2 | 50.0 |
| condition | n/a | ||
| subroutine | 5 | 5 | 100.0 |
| pod | 1 | 1 | 100.0 |
| total | 24 | 25 | 96.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package Compress::Stream::Zstd::DecompressionDictionary; | ||||||
| 2 | 1 | 1 | 463 | use 5.008001; | |||
| 1 | 4 | ||||||
| 3 | 1 | 1 | 5 | use strict; | |||
| 1 | 2 | ||||||
| 1 | 29 | ||||||
| 4 | 1 | 1 | 6 | use warnings; | |||
| 1 | 20 | ||||||
| 1 | 28 | ||||||
| 5 | |||||||
| 6 | 1 | 1 | 18 | use Compress::Stream::Zstd (); | |||
| 1 | 2 | ||||||
| 1 | 114 | ||||||
| 7 | |||||||
| 8 | sub new_from_file { | ||||||
| 9 | 1 | 1 | 1 | 1236 | my ($class, $file) = @_; | ||
| 10 | 1 | 50 | 45 | open my $fh, '<', $file or die $!; | |||
| 11 | 1 | 6 | local $/; | ||||
| 12 | 1 | 263 | my $dict = <$fh>; | ||||
| 13 | 1 | 39 | close $fh; | ||||
| 14 | 1 | 177 | $class->new($dict); | ||||
| 15 | } | ||||||
| 16 | |||||||
| 17 | 1; | ||||||
| 18 | __END__ |