Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixes few tests
  • Loading branch information
mickeyn committed Apr 23, 2016
1 parent 3d91364 commit 04f4733
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 26 deletions.
8 changes: 4 additions & 4 deletions t/release/common-files.t
Expand Up @@ -9,15 +9,15 @@ test_release(
{
name => 'Common-Files-1.1',
author => 'BORISNAT',
authorized => \1,
first => \1,
authorized => 1,
first => 1,
provides => ['Common::Files'],
modules => {
'lib/Common/Files.pm' => [
{
name => 'Common::Files',
indexed => \1,
authorized => \1,
indexed => 'true',
authorized => 'true',
version => '1.1',
version_numified => 1.1,
associated_pod =>
Expand Down
4 changes: 2 additions & 2 deletions t/release/devel-gofaster-0.000.t
Expand Up @@ -10,8 +10,8 @@ test_release(
name => 'Devel-GoFaster-0.000',
distribution => 'Devel-GoFaster',
author => 'LOCAL',
authorized => \1,
first => \1,
authorized => 1,
first => 1,
version => '0.000',

provides => [ 'Devel::GoFaster', ],
Expand Down
2 changes: 1 addition & 1 deletion t/release/documentation-not-readme.t
Expand Up @@ -8,7 +8,7 @@ use Test::More;
test_release(
'RWSTAUNER/Documentation-Not-Readme-0.01',
{
first => \1,
first => 1,
extra_tests => \&test_modules,
main_module => 'Documentation::Not::Readme',
}
Expand Down
22 changes: 11 additions & 11 deletions t/release/file-duplicates.t
Expand Up @@ -8,50 +8,50 @@ use Test::More;
test_release(
'BORISNAT/File-Duplicates-1.000',
{
first => \1,
first => 1,
main_module => 'File::Duplicates',
modules => {
'lib/File/Duplicates.pm' => [
{
name => 'File::Duplicates',
version => '0.991',
version_numified => '0.991',
authorized => \1,
indexed => \1,
authorized => 'true',
indexed => 'true',
}
],
'lib/File/lib/File/Duplicates.pm' => [
{
name => 'File::lib::File::Duplicates',
version => '0.992',
version_numified => '0.992',
authorized => \1,
indexed => \1,
authorized => 'true',
indexed => 'true',
}
],
'lib/Dupe.pm' => [
{
name => 'Dupe',
version => '0.993',
version_numified => '0.993',
authorized => \1,
indexed => \1,
authorized => 'true',
indexed => 'true',
}
],
'DupeX/Dupe.pm' => [
{
name => 'DupeX::Dupe',
version => '0.994',
version_numified => '0.994',
authorized => \1,
indexed => \1,
authorized => 'true',
indexed => 'true',
},
{
name => 'DupeX::Dupe::X',
version => '0.995',
version_numified => '0.995',
authorized => \1,
indexed => \1,
authorized => 'true',
indexed => 'true',
}
],
},
Expand Down
4 changes: 2 additions & 2 deletions t/release/ipsonar-0.29.t
Expand Up @@ -11,8 +11,8 @@ test_release(
distribution => 'IPsonar',

author => 'LOCAL',
authorized => \1,
first => \1,
authorized => 1,
first => 1,

# META file says ''.
version => '',
Expand Down
8 changes: 4 additions & 4 deletions t/release/local-lib.t
Expand Up @@ -10,16 +10,16 @@ test_release(
name => 'local-lib-0.01',
author => 'BORISNAT',
abstract => 'Legitimate module',
authorized => \1,
first => \1,
authorized => 1,
first => 1,
provides => ['local::lib'],
main_module => 'local::lib',
modules => {
'lib/local/lib.pm' => [
{
name => 'local::lib',
indexed => \1,
authorized => \1,
indexed => 'true',
authorized => 'true',
version => '0.01',
version_numified => 0.01,
associated_pod =>
Expand Down
4 changes: 2 additions & 2 deletions t/release/meta-provides.t
Expand Up @@ -12,8 +12,8 @@ test_release(
name => 'Meta-Provides-1.01',
author => 'RWSTAUNER',
abstract => 'has provides key in meta',
authorized => \1,
first => \1,
authorized => 1,
first => 1,
provides => [ 'Meta::Provides', ],
status => 'latest',
main_module => 'Meta::Provides',
Expand Down

0 comments on commit 04f4733

Please sign in to comment.