File Coverage

blib/lib/DBIx/Class/InflateColumn/JSON2Object/Trait/NoSerialize.pm
Criterion Covered Total %
statement 5 6 83.3
branch n/a
condition n/a
subroutine 2 3 66.6
pod n/a
total 7 9 77.7


line stmt bran cond sub pod time code
1             package DBIx::Class::InflateColumn::JSON2Object::Trait::NoSerialize;
2              
3             # ABSTRACT: NoSerialize trait for attributes
4             our $VERSION = '0.907'; # VERSION
5              
6 5     5   41 use Moose::Role;
  5         14  
  5         36  
7 5     5   25868 use 5.014;
  5         21  
8              
9             package Moose::Meta::Attribute::Custom::Trait::NoSerialize {
10              
11             sub register_implementation {
12 0     0     'DBIx::Class::InflateColumn::JSON2Object::Trait::NoSerialize';
13             }
14             }
15              
16             1;
17              
18             __END__
19              
20             =pod
21              
22             =encoding UTF-8
23              
24             =head1 NAME
25              
26             DBIx::Class::InflateColumn::JSON2Object::Trait::NoSerialize - NoSerialize trait for attributes
27              
28             =head1 VERSION
29              
30             version 0.907
31              
32             =head1 NAME
33              
34             DBIx::Class::InflateColumn::JSON2Object::Trait::NoSerialize - NoSerialize trait for attributes
35              
36             =head1 VERSION
37              
38             version 0.900
39              
40             =head1 AUTHOR
41              
42             Thomas Klausner <domm@cpan.org>
43              
44             =head1 COPYRIGHT AND LICENSE
45              
46             This software is copyright (c) 2017 by Thomas Klausner.
47              
48             This is free software; you can redistribute it and/or modify it under
49             the same terms as the Perl 5 programming language system itself.
50              
51             =head1 AUTHOR
52              
53             Thomas Klausner <domm@plix.at>
54              
55             =head1 COPYRIGHT AND LICENSE
56              
57             This software is copyright (c) 2017 - 2021 by Thomas Klausner.
58              
59             This is free software; you can redistribute it and/or modify it under
60             the same terms as the Perl 5 programming language system itself.
61              
62             =cut