File Coverage

File:lib/Railsish/ControllerHelpers.pm
Coverage:75.0%

linestmtbrancondsubpodtimecode
1package Railsish::ControllerHelpers;
2
4
4
4
35
12
47
use strict;
3
4
4
4
41
11
43
use warnings;
4
5
4
4
4
40
10
26
use Exporter::Lite;
6our @EXPORT = qw(notice_stickie);
7
8our @notice_stickies = ();
9
10sub notice_stickie {
11
0
0
    my ($text) = @_;
12
13
0
    push @notice_stickies, { text => $text };
14}
15
161;