File Coverage

blib/lib/Mojo/Console/Input.pm
Criterion Covered Total %
statement 3 7 42.8
branch n/a
condition n/a
subroutine 1 2 50.0
pod 1 1 100.0
total 5 10 50.0


line stmt bran cond sub pod time code
1             package Mojo::Console::Input;
2 1     1   6 use Mojo::Base -base;
  1         1  
  1         6  
3              
4             sub ask {
5 0     0 1   my $self = shift;
6              
7 0           my $answer = ;
8 0           chomp $answer;
9              
10 0           return $answer;
11             }
12              
13             1;
14              
15             =encoding utf8
16              
17             =head1 NAME
18              
19             Mojo::Console::Input - read things from STDIN
20              
21             =head1 METHODS
22              
23             L inherits all methods from L and implements
24             the following new ones.
25              
26             =head2 ask
27              
28             my $answer = $self->ask;
29              
30             =cut