File Coverage

blib/lib/DBIx/Class/Helper/ResultSet/Shortcut/Search/Null.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


line stmt bran cond sub pod time code
1             package DBIx::Class::Helper::ResultSet::Shortcut::Search::Null;
2             $DBIx::Class::Helper::ResultSet::Shortcut::Search::Null::VERSION = '2.034002';
3 56     56   22496 use strict;
  56         118  
  56         1337  
4 56     56   255 use warnings;
  56         101  
  56         1223  
5              
6 56     56   245 use parent 'DBIx::Class::Helper::ResultSet::Shortcut::Search::Base';
  56         102  
  56         275  
7              
8              
9             sub null {
10 2     2 1 14625 my ($self, @columns) = @_;
11              
12 2         14 return $self->_helper_apply_search({ '=' => undef }, @columns);
13             }
14              
15             1;
16              
17             __END__
18              
19             =pod
20              
21             =head1 NAME
22              
23             DBIx::Class::Helper::ResultSet::Shortcut::Search::Null
24              
25             =head2 null(@columns || \@columns)
26              
27             $rs->null('status');
28             $rs->null(['status', 'title']);
29              
30             =head1 AUTHOR
31              
32             Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>
33              
34             =head1 COPYRIGHT AND LICENSE
35              
36             This software is copyright (c) 2019 by Arthur Axel "fREW" Schmidt.
37              
38             This is free software; you can redistribute it and/or modify it under
39             the same terms as the Perl 5 programming language system itself.
40              
41             =cut