The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl

use strict;
use warnings;
use Test::More;
use Test::Exception;

my $pkg;

BEGIN {
    $pkg = 'Catmandu::Fix::log';
    use_ok $pkg;
}

my $data = {foo => 'bar'};

is $data, $pkg->new('test')->fix($data), "fixed data is the same object";

done_testing 2;