Skip to content

Commit

Permalink
t/corpus/ -> corpus/test/legacy/
Browse files Browse the repository at this point in the history
  • Loading branch information
haarg committed Oct 12, 2016
1 parent a91603f commit b23849b
Show file tree
Hide file tree
Showing 32 changed files with 16 additions and 16 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion t/legacy/dist-zilla-changes.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Test::More;

use CPAN::Changes;

my $changes = CPAN::Changes->load( 't/corpus/dist-zilla.changes',
my $changes = CPAN::Changes->load( 'corpus/test/legacy/dist-zilla.changes',
next_token => qr/\{\{\$NEXT\}\}/);

isa_ok( $changes, 'CPAN::Changes' );
Expand Down
2 changes: 1 addition & 1 deletion t/legacy/read_basic.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Test::More;

use CPAN::Changes;

my $changes = CPAN::Changes->load( 't/corpus/basic.changes' );
my $changes = CPAN::Changes->load( 'corpus/test/legacy/basic.changes' );

isa_ok( $changes, 'CPAN::Changes' );
is( $changes->preamble, '', 'no preamble' );
Expand Down
2 changes: 1 addition & 1 deletion t/legacy/read_different-indentation.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Test::More;

use CPAN::Changes;

my $changes = CPAN::Changes->load( 't/corpus/different-indentation.changes' );
my $changes = CPAN::Changes->load( 'corpus/test/legacy/different-indentation.changes' );

isa_ok( $changes, 'CPAN::Changes' );
is( $changes->preamble, '', 'no preamble' );
Expand Down
2 changes: 1 addition & 1 deletion t/legacy/read_dist-zilla.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Test::More;

use CPAN::Changes;

my $changes = CPAN::Changes->load( 't/corpus/dist-zilla_format.changes' );
my $changes = CPAN::Changes->load( 'corpus/test/legacy/dist-zilla_format.changes' );

isa_ok( $changes, 'CPAN::Changes' );

Expand Down
2 changes: 1 addition & 1 deletion t/legacy/read_encoded.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Test::More;

use CPAN::Changes;

for my $file ( 't/corpus/utf8.changes', 't/corpus/latin1.changes' ) {
for my $file ( 'corpus/test/legacy/utf8.changes', 'corpus/test/legacy/latin1.changes' ) {
my $changes = CPAN::Changes->load( $file );

isa_ok( $changes, 'CPAN::Changes' );
Expand Down
2 changes: 1 addition & 1 deletion t/legacy/read_group-brackets.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Test::More;

use CPAN::Changes;

my $changes = CPAN::Changes->load( 't/corpus/group-brackets.changes' );
my $changes = CPAN::Changes->load( 'corpus/test/legacy/group-brackets.changes' );

isa_ok( $changes, 'CPAN::Changes' );
is( $changes->preamble, '', 'no preamble' );
Expand Down
2 changes: 1 addition & 1 deletion t/legacy/read_group.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Test::More;

use CPAN::Changes;

my $changes = CPAN::Changes->load( 't/corpus/group.changes' );
my $changes = CPAN::Changes->load( 'corpus/test/legacy/group.changes' );

isa_ok( $changes, 'CPAN::Changes' );
is( $changes->preamble, '', 'no preamble' );
Expand Down
2 changes: 1 addition & 1 deletion t/legacy/read_line-continuation.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Test::More;

use CPAN::Changes;

my $changes = CPAN::Changes->load( 't/corpus/line-continuation.changes' );
my $changes = CPAN::Changes->load( 'corpus/test/legacy/line-continuation.changes' );

isa_ok( $changes, 'CPAN::Changes' );
is( $changes->preamble, '', 'no preamble' );
Expand Down
2 changes: 1 addition & 1 deletion t/legacy/read_multiple_releases.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Test::More;

use CPAN::Changes;

my $changes = CPAN::Changes->load( 't/corpus/multiple_releases.changes' );
my $changes = CPAN::Changes->load( 'corpus/test/legacy/multiple_releases.changes' );

isa_ok( $changes, 'CPAN::Changes' );
is( $changes->preamble, '', 'no preamble' );
Expand Down
2 changes: 1 addition & 1 deletion t/legacy/read_no-leading-space-for-change.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Test::More;

use CPAN::Changes;

my $changes = CPAN::Changes->load( 't/corpus/no-leading-space-for-change.changes' );
my $changes = CPAN::Changes->load( 'corpus/test/legacy/no-leading-space-for-change.changes' );

isa_ok( $changes, 'CPAN::Changes' );
is( $changes->preamble, '', 'no preamble' );
Expand Down
4 changes: 2 additions & 2 deletions t/legacy/read_preamble.t
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use Test::More;
use CPAN::Changes;

{
my $changes = CPAN::Changes->load( 't/corpus/preamble.changes' );
my $changes = CPAN::Changes->load( 'corpus/test/legacy/preamble.changes' );

isa_ok( $changes, 'CPAN::Changes' );
is( $changes->preamble, 'Revision history for perl module Foo::Bar',
Expand All @@ -16,7 +16,7 @@ use CPAN::Changes;
}

{
my $changes = CPAN::Changes->load( 't/corpus/long_preamble.changes' );
my $changes = CPAN::Changes->load( 'corpus/test/legacy/long_preamble.changes' );

isa_ok( $changes, 'CPAN::Changes' );
is( $changes->preamble, 'Revision history for perl module Foo::Bar
Expand Down
2 changes: 1 addition & 1 deletion t/legacy/read_space-before-date.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Test::More;

use CPAN::Changes;

my $changes = CPAN::Changes->load( 't/corpus/space-before-date.changes' );
my $changes = CPAN::Changes->load( 'corpus/test/legacy/space-before-date.changes' );

isa_ok( $changes, 'CPAN::Changes' );
is( $changes->preamble, '', 'no preamble' );
Expand Down
2 changes: 1 addition & 1 deletion t/legacy/read_timestamp.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Test::More;

use CPAN::Changes;

my $changes = CPAN::Changes->load( 't/corpus/timestamp.changes' );
my $changes = CPAN::Changes->load( 'corpus/test/legacy/timestamp.changes' );

isa_ok( $changes, 'CPAN::Changes' );

Expand Down
2 changes: 1 addition & 1 deletion t/legacy/read_unknown_date.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Test::More;

use CPAN::Changes;

my $changes = CPAN::Changes->load( 't/corpus/unknown_date.changes' );
my $changes = CPAN::Changes->load( 'corpus/test/legacy/unknown_date.changes' );

isa_ok( $changes, 'CPAN::Changes' );
is( $changes->preamble, '', 'no preamble' );
Expand Down
2 changes: 1 addition & 1 deletion t/legacy/read_version-date-separator.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Test::More;

use CPAN::Changes;

my $changes = CPAN::Changes->load( 't/corpus/version-date-separator.changes' );
my $changes = CPAN::Changes->load( 'corpus/test/legacy/version-date-separator.changes' );

isa_ok( $changes, 'CPAN::Changes' );
is( $changes->preamble, '', 'no preamble' );
Expand Down

0 comments on commit b23849b

Please sign in to comment.