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;
use Test::More;

BEGIN {
    use_ok('Web::Dash');
}


{
    my $dash = new_ok('Web::Dash', [lenses => []]);
    is_deeply($dash->{lenses}, [], 'empty lenses');
    is(ref($dash->to_app), 'CODE', 'to_app() OK (maybe...)');
}

done_testing();