File: rt90605.t

package info (click to toggle)
libcpan-changes-perl 0.500005-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,964 kB
  • sloc: perl: 988; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 467 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
use strict;
use warnings;

use Test::More;

use CPAN::Changes;

my $a = CPAN::Changes->new();
my $b = CPAN::Changes->new();

my $params = { version => '1.0'};

$a->add_release( $params );
$b->add_release( $params );

my ( @changes ) = ( 'hello' );

$a->release( '1.0' )->add_changes( @changes );

is_deeply( $a->release( '1.0' )->changes, { '' => [ 'hello' ] }, 'changes on "A"' );
is_deeply( $b->release( '1.0' )->changes, { }, 'no changes on "B"' );

done_testing;