| blib/lib/Farly/Transport/Object.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| condition | 10 | 15 | 66.6 |
| line | !l | l&&!r | l&&r | condition |
|---|---|---|---|---|
| 18 | 45 | 3 | 15 | $self->first == $other->first && $self->last == $other->last |
| 28 | 13 | 14 | 27 | $self->first <= $other->first && $self->last >= $other->last |
| 67 | 0 | 0 | 0 | $self->size == $other->size && $self->last + 1 == $other->first |
| line | l | !l&&r | !l&&!r | condition |
|---|---|---|---|---|
| 38 | 0 | 0 | 3 | $self->first <= $other->first && $other->first <= $self->last || $self->first <= $other->last && $other->last <= $self->last || $other->first <= $self->first && $self->first <= $other->last |
| 77 | 12 | 1 | 12 | $self->first <=> $other->first || $other->last <=> $self->last |