The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use warnings;

# test the actormetadata model mixin works well with model which has other mixins.

use Test::More tests => 1;
use Jifty::Test::Dist;

is_deeply(
[sort map { $_->name } TestApp::Plugin::ActorMetadata::Model::Evil->columns],
[qw(created_by created_on id my_mixin_hello updated_by updated_on)]);