File Coverage

blib/lib/MediaWikiUtils.pm
Criterion Covered Total %
statement 15 16 93.7
branch n/a
condition n/a
subroutine 5 6 83.3
pod 0 1 0.0
total 20 23 86.9


line stmt bran cond sub pod time code
1             #
2             # This file is part of MediaWikiUtils
3             #
4             # This software is copyright (c) 2014 by Natal Ngétal.
5             #
6             # This is free software; you can redistribute it and/or modify it under
7             # the same terms as the Perl 5 programming language system itself.
8             #
9             package MediaWikiUtils;
10             {
11             $MediaWikiUtils::VERSION = '0.141410';
12             }
13              
14 1     1   32907 use strict;
  1         3  
  1         45  
15 1     1   6 use warnings;
  1         5  
  1         32  
16              
17 1     1   1128 use Moo;
  1         43723  
  1         6  
18 1     1   13304 use MooX::Cmd;
  1         23101  
  1         8  
19 1     1   211097 use MooX::Options;
  1         2054  
  1         8  
20              
21             #ABSTRACT: A tools provide few useful MediaWiki operation
22              
23             sub execute {
24 0     0 0   shift->options_usage();
25             }
26              
27              
28             1;
29              
30             __END__