The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# plugin_import.t

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

{
    use Dancer2;
    use t::lib::PluginWithImport;

    get '/test' => sub {
        dancer_plugin_with_import_keyword;
    };
}

use Dancer2::Test;

response_content_is '/test', 'dancer_plugin_with_import_keyword',
  "the plugin exported its keyword";

is_deeply(
    t::lib::PluginWithImport->stuff,
    { 't::lib::PluginWithImport' => 'imported' },
    "the original import method of the plugin is still there"
);

done_testing;