| blib/lib/Quilt.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 4 | 6 | 66.6 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 2 | 2 | 100.0 |
| pod | n/a | ||
| total | 6 | 8 | 75.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | # | ||||||
| 2 | # Copyright (C) 1997 Ken MacLeod | ||||||
| 3 | # See the file COPYING for distribution terms. | ||||||
| 4 | # | ||||||
| 5 | # $Id: Quilt.pm,v 1.6 1998/03/09 03:18:14 ken Exp $ | ||||||
| 6 | # | ||||||
| 7 | |||||||
| 8 | package Quilt; | ||||||
| 9 | 1 | 1 | 573 | use vars qw{$VERSION}; | |||
| 1 | 2 | ||||||
| 1 | 61 | ||||||
| 10 | |||||||
| 11 | $VERSION = '0.08'; | ||||||
| 12 | |||||||
| 13 | 1 | 1 | 489 | use Quilt::Objs; | |||
| 0 | |||||||
| 0 | |||||||
| 14 | use Quilt::Flow::Table; | ||||||
| 15 | use Quilt::DO::Author; | ||||||
| 16 | use Quilt::DO::List; | ||||||
| 17 | use Quilt::DO::Struct; | ||||||
| 18 | use Quilt::HTML; | ||||||
| 19 | |||||||
| 20 | 1; |