lib/UR/Namespace/Command/Update.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 | package UR::Namespace::Command::Update; | ||||||
2 | 1 | 1 | 23 | use warnings; | |||
1 | 1 | ||||||
1 | 27 | ||||||
3 | 1 | 1 | 3 | use strict; | |||
1 | 2 | ||||||
1 | 16 | ||||||
4 | 1 | 1 | 3 | use UR; | |||
1 | 1 | ||||||
1 | 4 | ||||||
5 | our $VERSION = "0.46"; # UR $VERSION; | ||||||
6 | |||||||
7 | UR::Object::Type->define( | ||||||
8 | class_name => __PACKAGE__, | ||||||
9 | is => "UR::Namespace::Command::Base", | ||||||
10 | doc => 'update parts of the source tree of a UR namespace' | ||||||
11 | ); | ||||||
12 | |||||||
13 | 0 | 0 | 0 | sub sub_command_sort_position { 4 } | |||
14 | |||||||
15 | 1; | ||||||
16 |