File: app.pl

package info (click to toggle)
libmodule-pluggable-perl 5.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 440 kB
  • sloc: perl: 1,510; makefile: 4
file content (14 lines) | stat: -rw-r--r-- 248 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env perl

use strict;
use warnings;

use Test::More;

my @plugins = App::TestMPFP->plugins();
is_deeply([@plugins], ['App::TestMPFP::Plugin::A'], 'found expected plugins');

package App::TestMPFP;
use Module::Pluggable require => 1;

1;