From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
use Time::localtime;
use Test::Requires { 'DBD::SQLite' => 1.31 };
use lib 't/lib/';
my $dbh = DBIx::Sunny->connect('dbi:SQLite::memory:', '', '');
my $schema = TestSchema->new(dbh => $dbh);
my $created = localtime;
is( $schema->deflate_args(created=>$created), 'TestTm');
done_testing;