File Coverage

blib/lib/WE_Frontend/Plugin/WE_Navigation_WML/Object.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 13 15 86.6


line stmt bran cond sub pod time code
1             # -*- perl -*-
2              
3             #
4             # $Id: Object.pm,v 1.1 2004/02/18 18:03:56 eserte Exp $
5             # Author: Slaven Rezic
6             #
7             # Copyright (C) 2004 Slaven Rezic.
8             # This is free software; you can redistribute it and/or modify it under the
9             # terms of the GNU General Public License, see the file COPYING.
10              
11             #
12             # Mail: slaven@rezic.de
13             # WWW: http://we-framework.sourceforge.net
14             #
15              
16             package WE_Frontend::Plugin::WE_Navigation_WML::Object;
17              
18 1     1   5 use base qw(WE_Frontend::Plugin::WE_Navigation::Object);
  1         1  
  1         73  
19              
20 1     1   5 use strict;
  1         2  
  1         42  
21 1     1   5 use vars qw($VERSION);
  1         2  
  1         90  
22              
23             $VERSION = sprintf("%d.%02d", q$Revision: 1.1 $ =~ /(\d+)\.(\d+)/);
24              
25 0     0 1   sub ext { ".wml" }
26              
27             1;