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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
use Test::More tests => 2;
use Module::CPANTS::Analyse;
use File::Spec::Functions;
use Test::Deep;
my $a=Module::CPANTS::Analyse->new({
dist=>'t/eg/Acme-DonMartinOther-0.06.tar.gz',
_dont_cleanup=>$ENV{DONT_CLEANUP},
});
my $rv=$a->unpack;
is($rv,undef,'unpack ok');
$a->analyse;
$a->calc_kwalitee;
my $kw=$a->d->{kwalitee};
my $expected = {
'extracts_nicely' => 1,
'has_buildtool' => 1,
'has_readme' => 1,
'manifest_matches_dist' => 1,
'metayml_declares_perl_version' => 0,
'has_example' => 1,
'has_test_pod_coverage' => 1,
'metayml_is_parsable' => 1,
'proper_libs' => 1,
'has_changelog' => 1,
'no_pod_errors' => 1,
'use_strict' => 1,
'kwalitee' => 27,
'no_stdin_for_prompting' => 1,
'has_test_pod' => 1,
'easily_repackageable' => 0,
'easily_repackageable_by_fedora' => 0,
'has_tests' => 1,
'easily_repackageable_by_debian' => 0,
'has_manifest' => 1,
'no_symlinks' => 1,
'has_version' => 1,
'extractable' => 1,
'buildtool_not_executable' => 1,
'has_working_buildtool' => 1,
'metayml_has_license' => 0,
'has_humanreadable_license' => 0,
'no_generated_files' => 0,
'has_meta_yml' => 1,
'metayml_conforms_spec_current' => 0,
'use_warnings' => 0,
'no_large_files' => 1,
'no_cpants_errors' => 1,
'has_tests_in_t_dir' => 1,
'has_version_in_each_file' => 1,
'fits_fedora_license' => 0,
'has_proper_version' => 1,
'metayml_conforms_to_known_spec' => 0,
'has_separate_license_file' => 0,
'has_license_in_source_file' => 0,
'metayml_has_provides'=>0,
'distributed_by_debian'=>0,
'latest_version_distributed_by_debian'=>0,
'has_no_bugs_reported_in_debian'=>0,
'has_no_patches_in_debian'=>0,
'uses_test_nowarnings'=>0,
'has_better_auto_install'=>1,
};
$expected->{kwalitee} = ignore;
cmp_deeply($kw, superhashof($expected), 'kwalitee fits');
#use Data::Dumper;
#diag(Dumper $kw);
#diag(Dumper $a->d);
|