| lib/UR/Namespace/Command/List.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::List; | ||||||
| 2 | 1 | 1 | 24 | use warnings; | |||
| 1 | 1 | ||||||
| 1 | 34 | ||||||
| 3 | 1 | 1 | 3 | use strict; | |||
| 1 | 2 | ||||||
| 1 | 18 | ||||||
| 4 | 1 | 1 | 3 | use UR; | |||
| 1 | 1 | ||||||
| 1 | 5 | ||||||
| 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 => "list objects, classes, modules" | ||||||
| 11 | ); | ||||||
| 12 | |||||||
| 13 | 0 | 0 | 0 | sub sub_command_sort_position { 5 } | |||
| 14 | |||||||
| 15 | 1; | ||||||
| 16 |