lib/UR/Namespace/Command/Test.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 | |||||||
2 | # The diff command delegates to sub-commands under the adjoining directory. | ||||||
3 | |||||||
4 | package UR::Namespace::Command::Test; | ||||||
5 | |||||||
6 | 1 | 1 | 22 | use strict; | |||
1 | 1 | ||||||
1 | 24 | ||||||
7 | 1 | 1 | 3 | use warnings; | |||
1 | 1 | ||||||
1 | 19 | ||||||
8 | 1 | 1 | 5 | use UR; | |||
1 | 1 | ||||||
1 | 6 | ||||||
9 | our $VERSION = "0.46"; # UR $VERSION; | ||||||
10 | |||||||
11 | UR::Object::Type->define( | ||||||
12 | class_name => __PACKAGE__, | ||||||
13 | is => "UR::Namespace::Command::Base", | ||||||
14 | doc => 'tools for testing and debugging', | ||||||
15 | ); | ||||||
16 | |||||||
17 | 1; | ||||||
18 |