The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# -*- mode: cperl; -*-
use Test::Base;
use autobox::Numeric::Bytes;

filters {
    input    => [qw(autoboxnize eval)],
    expected => [qw(chomp)],
};

spec_file './t/scale.spec';

sub autoboxnize {
    return "use autobox::Numeric::Bytes; ".shift;
}

plan tests => 1 * blocks;

run {
    my $block = shift;
    is $block->input, $block->expected, $block->name;
};

__END__