The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl

use strict;
use warnings;

use File::Temp;
use File::Spec;

use Catalyst::Plugin::Session::Test::Store (
    backend => "FastMmap",
    config  => { storage => scalar( File::Temp::tmpnam() ) },

    # we do not care in this package about deleting temporary file as it is
    # removed automatically by Cache::FastMmap
    extra_tests => 1
);

{

    package SessionStoreTest;
    use Catalyst;

    __PACKAGE__->setup;

}

1;