| lib/UR/Value/Integer.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::Integer; | ||||||
| 2 | |||||||
| 3 | |||||||
| 4 | 90 | 90 | 3255 | use strict; | |||
| 90 | 117 | ||||||
| 90 | 2688 | ||||||
| 5 | 90 | 90 | 329 | use warnings; | |||
| 90 | 105 | ||||||
| 90 | 6655 | ||||||
| 6 | |||||||
| 7 | require UR; | ||||||
| 8 | our $VERSION = "0.46"; # UR $VERSION; | ||||||
| 9 | |||||||
| 10 | UR::Object::Type->define( | ||||||
| 11 | class_name => 'UR::Value::Integer', | ||||||
| 12 | is => ['UR::Value::Number'], | ||||||
| 13 | ); | ||||||
| 14 | |||||||
| 15 | 1; | ||||||
| 16 | #$Header$ |