| blib/lib/Sledge/Pages/Apache/I18N.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 Sledge::Pages::Apache::I18N; | ||||||
| 2 | 1 | 1 | 20351 | use strict; | |||
| 1 | 2 | ||||||
| 1 | 39 | ||||||
| 3 | 1 | 1 | 6 | use base qw(Sledge::Pages::Base); | |||
| 1 | 2 | ||||||
| 1 | 818 | ||||||
| 4 | |||||||
| 5 | use vars qw($VERSION); | ||||||
| 6 | $VERSION = '0.02'; | ||||||
| 7 | |||||||
| 8 | use Apache; | ||||||
| 9 | use Sledge::Request::Apache::I18N; | ||||||
| 10 | |||||||
| 11 | sub create_request { | ||||||
| 12 | my($self, $r) = @_; | ||||||
| 13 | return Sledge::Request::Apache::I18N->new($r || Apache->request); | ||||||
| 14 | } | ||||||
| 15 | |||||||
| 16 | 1; | ||||||
| 17 | |||||||
| 18 | __END__ |