File: Serialize.pm

package info (click to toggle)
libcatalyst-action-rest-perl 1.21-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 476 kB
  • sloc: perl: 1,750; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 311 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package Test::Serialize;

use FindBin;

use lib ("$FindBin::Bin/../lib");

use Moose;
use namespace::autoclean;

use Catalyst::Runtime '5.70';

use Catalyst;
use Test::Catalyst::Log;

__PACKAGE__->config(
    name => 'Test::Serialize',
);

__PACKAGE__->setup;
__PACKAGE__->log( Test::Catalyst::Log->new );

1;