File: test.pm

package info (click to toggle)
libcatmandu-perl 1.2024-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,552 kB
  • sloc: perl: 17,037; makefile: 24; sh: 1
file content (10 lines) | stat: -rw-r--r-- 113 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
package T::Fix::test;
use Moo;

sub fix {
    my ($self, $data) = @_;
    $data->{test} = 'ok';
    $data;
}

1;