File Coverage

t/PerlySense-Editor-Emacs-external-dir.t
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1             #!/usr/bin/perl -w
2 1     1   105683 use strict;
  1         2  
  1         74  
3              
4 1     1   521 use Test::More tests => 2;
  1         23867  
  1         7  
5              
6 1     1   840 use Data::Dumper;
  1         5275  
  1         43  
7              
8 1     1   277 use lib "lib";
  1         545  
  1         4  
9              
10 1     1   70627 use_ok("Devel::PerlySense::Editor::Emacs");
  1         363  
  1         2  
  1         2  
  1         10  
11              
12              
13 1         1361 like(Devel::PerlySense::Editor::Emacs->dirExtenal, qr/lib.Devel.PerlySense.external$/, "Got good extenal path");
14              
15              
16              
17             __END__
18