File Coverage

blib/lib/WebEditor/OldFeatures/NullMixin.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             # -*- perl -*-
2              
3             #
4             # $Id: NullMixin.pm,v 1.1 2005/01/27 16:13:20 eserte Exp $
5             # Author: Slaven Rezic
6             #
7             # Copyright (C) 2005 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: eserte@users.sourceforge.net
12             # WWW: http://www.sourceforge.net/projects/we-framework
13             #
14              
15             package WebEditor::OldFeatures::NullMixin;
16              
17             =head1 NAME
18              
19             WebEditor::OldFeatures::NullMixin -
20              
21             =head1 SYNOPSIS
22              
23             =head1 DESCRIPTION
24              
25             This is a template for a new mixin.
26              
27             =head1 AUTHOR
28              
29             Slaven Rezic.
30              
31             =cut
32              
33 1     1   1135 use strict;
  1         2  
  1         30  
34 1     1   4 use vars qw($VERSION);
  1         2  
  1         117  
35             $VERSION = sprintf("%d.%02d", q$Revision: 1.1 $ =~ /(\d+)\.(\d+)/);
36              
37 1     1   5 use mixin::with 'WebEditor::OldController';
  1         2  
  1         6  
38              
39             # add mixin'ed methods here
40              
41             1;