The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test::Spec;

use ObjectDB::Util qw/merge/;

describe 'merge' => sub {

    it 'merges hashes' => sub {
        is_deeply({with => ['table']}, merge {with => 'table'}, {with => []});
    };

};

runtests unless caller;