lib/UR/Namespace/Command.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 12 | 12 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 4 | 4 | 100.0 |
pod | n/a | ||
total | 16 | 16 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package UR::Namespace::Command; | ||||||
2 | |||||||
3 | # This is the module behind the "ur" executable. | ||||||
4 | |||||||
5 | 1 | 1 | 22 | use strict; | |||
1 | 1 | ||||||
1 | 22 | ||||||
6 | 1 | 1 | 3 | use warnings; | |||
1 | 0 | ||||||
1 | 18 | ||||||
7 | 1 | 1 | 3 | use UR; | |||
1 | 1 | ||||||
1 | 4 | ||||||
8 | 1 | 1 | 3 | use UR::Namespace::Command::Base; | |||
1 | 1 | ||||||
1 | 5 | ||||||
9 | |||||||
10 | our $VERSION = "0.46"; # UR $VERSION; | ||||||
11 | |||||||
12 | UR::Object::Type->define( | ||||||
13 | class_name => __PACKAGE__, | ||||||
14 | is => 'Command', | ||||||
15 | doc => 'tools to create and maintain a ur class tree' | ||||||
16 | ); | ||||||
17 | |||||||
18 | 1; | ||||||
19 |