File: Functions.pm

package info (click to toggle)
libmetacpan-client-perl 2.033000-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 552 kB
  • sloc: perl: 2,564; makefile: 6
file content (19 lines) | stat: -rw-r--r-- 315 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
use warnings;
use MetaCPAN::Client;
use Test::More;

my $version = $MetaCPAN::Client::VERSION || 'xx';

sub mcpan {
    my $mc = MetaCPAN::Client->new(
        ua_args => [ agent => "MetaCPAN::Client-testing/$version" ],
        @_,
    );

    isa_ok( $mc, 'MetaCPAN::Client' );

    return $mc;
}

1;