File Coverage

blib/lib/WE_Singlesite/Root_TieTextDir.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 14 18 77.7


line stmt bran cond sub pod time code
1             # -*- perl -*-
2              
3             #
4             # $Id: Root_TieTextDir.pm,v 1.1 2004/02/23 07:27:49 eserte Exp $
5             # Author: Slaven Rezic
6             #
7             # Copyright (C) 2004 Slaven Rezic. All rights reserved.
8             # This package is free software; you can redistribute it and/or
9             # modify it under the same terms as Perl itself.
10             #
11             # Mail: slaven@rezic.de
12             # WWW: http://www.rezic.de/eserte/
13             #
14              
15             package WE_Singlesite::Root_TieTextDir;
16              
17 1     1   9156 use strict;
  1         9  
  1         58  
18 1     1   7 use vars qw($VERSION);
  1         3  
  1         119  
19             $VERSION = sprintf("%d.%02d", q$Revision: 1.1 $ =~ /(\d+)\.(\d+)/);
20              
21 1     1   24 use base qw(WE_Singlesite::Root);
  1         2  
  1         558  
22              
23 0     0 1   sub DBClass { "Tie::TextDir" }
24 0     0 1   sub ObjDBFile { "objdb.dir" }
25              
26             1;
27              
28             __END__