File: package.t

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 (22 lines) | stat: -rw-r--r-- 701 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
20
21
22
#!perl

use strict;
use warnings;
use Test::More tests => 10;
use Ref::Util qw< is_arrayref is_ref >;

use lib '.';
use t::lib::Functions;

my $mc = mcpan();
can_ok( $mc, 'package' );

my $pack = $mc->package('MooseX::Types');
isa_ok( $pack, 'MetaCPAN::Client::Package' );
can_ok( $pack, qw< module_name file distribution version author > );
ok( !is_ref($pack->module_name),  "module_name is not a ref");
ok( !is_ref($pack->file),         "file is not a ref");
ok( !is_ref($pack->distribution), "distribution is not a ref");
ok( !is_ref($pack->version),      "version is not a ref");
ok( !is_ref($pack->dist_version), "version is not a ref");
ok( !is_ref($pack->author),       "author is not a ref");