File Coverage

blib/lib/UR/DataSource/RDBMS/Operator/NotIn.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1 3     3   1732 use strict;
  3         3  
  3         89  
2 3     3   10 use warnings;
  3         5  
  3         121  
3              
4             package UR::DataSource::RDBMS::Operator::NotIn;
5              
6 3     3   11 use base 'UR::DataSource::RDBMS::Operator::In';
  3         3  
  3         55  
7              
8 23     23   79 sub _negation_clause { ' not' }; # note the leading space
9              
10             1;