File Coverage

lib/UR/Value/Boolean.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package UR::Value::Boolean;
2 86     86   3606 use strict;
  86         129  
  86         2573  
3 86     86   307 use warnings;
  86         102  
  86         6140  
4              
5             require UR;
6             our $VERSION = "0.46"; # UR $VERSION;
7              
8             UR::Object::Type->define(
9             class_name => 'UR::Value::Boolean',
10             is => ['UR::Value::Text'],
11             );
12              
13             1;