File: resultset.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 (33 lines) | stat: -rw-r--r-- 718 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
23
24
25
26
27
28
29
30
31
32
33
#!perl

use strict;
use warnings;

use Test::More tests => 3;
use Test::Fatal;
use MetaCPAN::Client::ResultSet;

{
    package MetaCPAN::Client::Test::ScrollerZ;
    use base 'MetaCPAN::Client::Scroll'; # < 5.10 FTW (except, no)
    sub total {0}
}

like(
    exception {
        MetaCPAN::Client::ResultSet->new(
            type     => 'failZZ',
            scroller => bless {}, 'MetaCPAN::Client::Test::ScrollerZ',
        )
    },
    qr/Invalid type/,
    'Invalid type fail',
);

my $rs = MetaCPAN::Client::ResultSet->new(
    type     => 'author',
    scroller => bless {}, 'MetaCPAN::Client::Scroll',
);

isa_ok( $rs, 'MetaCPAN::Client::ResultSet' );
can_ok( $rs, qw<next aggregations total type scroller> );