File Coverage

lib/UR/Namespace/Command/Old/DiffUpdate.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 12 15 80.0


line stmt bran cond sub pod time code
1              
2             package UR::Namespace::Command::Old::DiffUpdate;
3              
4 1     1   23 use strict;
  1         1  
  1         27  
5 1     1   3 use warnings;
  1         1  
  1         20  
6 1     1   3 use UR;
  1         1  
  1         4  
7             our $VERSION = "0.46"; # UR $VERSION;
8              
9             UR::Object::Type->define(
10             class_name => __PACKAGE__,
11             is => "UR::Namespace::Command::Base",
12             );
13              
14             sub help_description {
15 0     0 0   "Show the differences between class schema and database schema."
16             }
17              
18             *for_each_class_object = \&UR::Namespace::Command::Diff::for_each_class_object_delegate_used_by_sub_commands;
19              
20             1;