lib/UR/Value/GLOB.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 6 | 6 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 2 | 2 | 100.0 |
pod | n/a | ||
total | 8 | 8 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package UR::Value::GLOB; | ||||||
2 | |||||||
3 | 1 | 1 | 65 | use strict; | |||
1 | 1 | ||||||
1 | 33 | ||||||
4 | 1 | 1 | 4 | use warnings; | |||
1 | 1 | ||||||
1 | 83 | ||||||
5 | |||||||
6 | require UR; | ||||||
7 | our $VERSION = "0.46"; # UR $VERSION; | ||||||
8 | |||||||
9 | UR::Object::Type->define( | ||||||
10 | class_name => 'UR::Value::GLOB', | ||||||
11 | is => ['UR::Value::PerlReference'], | ||||||
12 | ); | ||||||
13 | |||||||
14 | 1; | ||||||
15 | #$Header$ |