File: Session.pm

package info (click to toggle)
libcatalyst-plugin-session-store-delegate-perl 0.06-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 144 kB
  • sloc: perl: 1,232; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 340 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
package SessionStoreTest::Model::Session;
use base qw/Catalyst::Model/;
use strict;
use warnings;

# This is currently just a stub!
# t/basic.t implements a closure which gets the model but does nothing with it.
# Tests without a closure should be added.

our $VERSION = 0.0001; # Otherwise we get warnings as our package looks empty.

1;