The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# Who creates URI objects and how many?
# Only tell me when they are created by Dancer code,
# that is, not by the tests themselves.

my $depth = $opt{depth} // 5;
before { count constructor => ustack($depth) }
    call 'URI::new' & cflow qr/Dancer/;