File Coverage

lib/Command.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Command;
2              
3 266     266   6868 use strict;
  266         320  
  266         7279  
4 266     266   894 use warnings;
  266         335  
  266         6242  
5 266     266   877 use UR;
  266         311  
  266         2492  
6              
7             our $VERSION = "0.46"; # UR $VERSION;
8              
9             UR::Object::Type->define(
10             class_name => __PACKAGE__,
11             is_abstract => 1,
12             subclassify_by_version => 1,
13             );
14              
15             1;