Kwalitee Issues

meta_yml_conforms_to_known_spec

Take a look at the META.yml Spec at https://metacpan.org/pod/CPAN::Meta::History::Meta_1_4 (for version 1.4) or https://metacpan.org/pod/CPAN::Meta::Spec (for version 2), and change your META.yml accordingly.

Error: Missing mandatory field, 'license' (license) [Validation: 1.2]

buildtool_not_executable

Change the permissions of Build.PL/Makefile.PL to not-executable.

manifest_matches_dist

Run a proper command ("make manifest" or "./Build manifest", maybe with a force option), or use a distribution builder to generate the MANIFEST. Or update MANIFEST manually.

Error:

  • MANIFEST (139) does not match dist (143):
  • Missing in MANIFEST: ._README, lib/Test/._C2FIT.pm, lib/Test/C2FIT/._TypeAdapter.pm, t/lib/Test/C2FIT/test/._AllTests.pm

use_strict

Add 'use strict' (or its equivalents) to all modules, or convince us that your favorite module is well-known enough and people can easily see the modules are strictly written.

Error: FilteredData, NullValueTest, ParseEmptyTagsTest, RowsetFilter, Test::._C2FIT, Test::C2FIT::._TypeAdapter, Test::C2FIT::Exception, Test::C2FIT::ParseException, Test::C2FIT::ScientificDouble, Test::C2FIT::ScientificDoubleTypeAdapter

meta_yml_declares_perl_version

If you are using Build.PL define the {requires}{perl} = VERSION field. If you are using MakeMaker (Makefile.PL) you should upgrade ExtUtils::MakeMaker to 6.48 and use MIN_PERL_VERSION parameter. Perl::MinimumVersion can help you determine which version of Perl your module needs.

has_meta_json

Add a META.json to the distribution. Your buildtool should be able to autogenerate it.

no_dot_underscore_files

If you use Mac OS X, set COPYFILE_DISABLE (for OS 10.5 and better) or COPY_EXTENDED_ATTRIBUTES_DISABLE (for OS 10.4) environmental variable to true to exclude dot underscore files from a distribution.

Error:

  • ._README
  • lib/Test/._C2FIT.pm
  • lib/Test/C2FIT/._TypeAdapter.pm
  • t/lib/Test/C2FIT/test/._AllTests.pm

proper_libs

Move your *.pm files in a directory named 'lib'. The directory structure should look like 'lib/Your/Module.pm' for a module named 'Your::Module'. If you need to provide additional files, e.g. for testing, that should not be considered for Kwalitee, then you should look at the 'provides' map in META.yml to limit the files scanned; or use the 'no_index' map to exclude parts of the distribution.

Error: examples-perl/lib/FilteredData.pm, examples-perl/lib/NullFkWrapper.pm, examples-perl/lib/NullValueTest.pm, examples-perl/lib/ParseEmptyTagsTest.pm, examples-perl/lib/RowsetFilter.pm, spec/fat/Test/C2FIT/fat/AnnotationFixture.pm, spec/fat/Test/C2FIT/fat/DocumentParseFixture.pm, spec/fat/Test/C2FIT/fat/ExampleFixture.pm, spec/fat/Test/C2FIT/fat/FixtureLoadFixture.pm, spec/fat/Test/C2FIT/fat/FixtureNameFixture.pm, spec/fat/Test/C2FIT/fat/HtmlToTextFixture.pm, spec/fat/Test/C2FIT/fat/NotAFixture.pm, spec/fat/Test/C2FIT/fat/ReferenceFixture.pm, spec/fat/Test/C2FIT/fat/StandardAnnotationFixture.pm, spec/fat/Test/C2FIT/fat/TableParseFixture.pm, spec/fat/Test/C2FIT/fat/TextToHtmlFixture.pm

meta_yml_has_license

Define the license if you are using in Build.PL. If you are using MakeMaker (Makefile.PL) you should upgrade to ExtUtils::MakeMaker version 6.31.

use_warnings

Add 'use warnings' (or its equivalents) to all modules, or convince us that your favorite module is well-known enough and people can easily see the modules warn when something bad happens.

Error: FilteredData, NullFkWrapper, NullValueTest, ParseEmptyTagsTest, RowsetFilter, Test::._C2FIT, Test::C2FIT::._TypeAdapter, Test::C2FIT::ActionFixture, Test::C2FIT::ColumnFixture, Test::C2FIT::Exception, Test::C2FIT::FileRunner, Test::C2FIT::Fixture, Test::C2FIT::GenericAdapter, Test::C2FIT::GenericArrayAdapter, Test::C2FIT::Parse, Test::C2FIT::ParseException, Test::C2FIT::PrimitiveFixture, Test::C2FIT::RowFixture, Test::C2FIT::ScientificDouble, Test::C2FIT::ScientificDoubleTypeAdapter, Test::C2FIT::Summary, Test::C2FIT::TimedActionFixture, Test::C2FIT::TypeAdapter, Test::C2FIT::WikiRunner, Test::C2FIT::fat::AnnotationFixture, Test::C2FIT::fat::DocumentParseFixture, Test::C2FIT::fat::ExampleFixture, Test::C2FIT::fat::FixtureLoadFixture, Test::C2FIT::fat::FixtureNameFixture, Test::C2FIT::fat::HtmlToTextFixture, Test::C2FIT::fat::NotAFixture, Test::C2FIT::fat::ReferenceFixture, Test::C2FIT::fat::StandardAnnotationFixture, Test::C2FIT::fat::TableParseFixture, Test::C2FIT::fat::TextToHtmlFixture

meta_yml_has_provides

Add all modules contained in this distribution to the META.yml field 'provides'. Module::Build or Dist::Zilla::Plugin::MetaProvides do this automatically for you.

meta_yml_has_repository_resource

Add a 'repository' resource to the META.yml via 'meta_add' accessor (for Module::Build) or META_ADD parameter (for ExtUtils::MakeMaker).

has_separate_license_file

This is not a critical issue. Currently mainly informative for the CPANTS authors. It might be removed later.

has_security_doc

Add SECURITY(.pod|md). See Software::Security::Policy.

security_doc_contains_contact

Add SECURITY(.pod|md) and add a contact address. See Software::Security::Policy.

has_contributing_doc

Add CONTRIBUTING(.pod|md). See https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors.

Modules

Name Abstract Version View
FilteredData metacpan
NullFkWrapper metacpan
NullValueTest metacpan
ParseEmptyTagsTest metacpan
RowsetFilter metacpan
Test::C2FIT A direct Perl port of Ward Cunningham's FIT acceptance test framework for Java. 0.08 metacpan
Test::C2FIT::ActionFixture An action fixture interprets rows as a sequence of commands to be performed in order. metacpan
Test::C2FIT::ColumnFixture A ColumnFixture maps columns in the test data to fields or methods of its subclasses. metacpan
Test::C2FIT::Exception metacpan
Test::C2FIT::FileRunner a runner class operating on (plain) html files. metacpan
Test::C2FIT::Fixture Base class of all fixtures. A fixture checks examples in a table (of the input document) by running the actual program. Typically you neither use this class directly, nor subclass it directly. metacpan
Test::C2FIT::GenericAdapter metacpan
Test::C2FIT::GenericArrayAdapter A type adapter capable of checking equality of two array-refs. metacpan
Test::C2FIT::Parse Parsing of html source, filtering out contents of arbitrary tags. metacpan
Test::C2FIT::ParseException metacpan
Test::C2FIT::PrimitiveFixture metacpan
Test::C2FIT::RowFixture A RowFixture compares rows in the test data to objects in the system under test. Methods are invoked on the objects and returned values compared to those in the table. An algorithm matches rows with objects based on one or more keys. Objects may be missing or in surplus and are so noted. metacpan
Test::C2FIT::ScientificDouble metacpan
Test::C2FIT::ScientificDoubleTypeAdapter A type adapter capable of checking float numbers metacpan
Test::C2FIT::Summary metacpan
Test::C2FIT::TimedActionFixture metacpan
Test::C2FIT::TypeAdapter Base class of all TypeAdapters. metacpan
Test::C2FIT::WikiRunner a runner class operating on (wiki) html files. metacpan
Test::C2FIT::fat::AnnotationFixture metacpan
Test::C2FIT::fat::DocumentParseFixture metacpan
Test::C2FIT::fat::ExampleFixture metacpan
Test::C2FIT::fat::FixtureLoadFixture metacpan
Test::C2FIT::fat::FixtureNameFixture metacpan
Test::C2FIT::fat::HtmlToTextFixture metacpan
Test::C2FIT::fat::NotAFixture metacpan
Test::C2FIT::fat::ReferenceFixture metacpan
Test::C2FIT::fat::StandardAnnotationFixture metacpan
Test::C2FIT::fat::TableParseFixture metacpan
Test::C2FIT::fat::TextToHtmlFixture metacpan

Provides

Name File View
ParseEmptyTagsTest2 examples-perl/lib/ParseEmptyTagsTest.pm metacpan
Test::C2FIT::Counts lib/Test/C2FIT/Fixture.pm metacpan
Test::C2FIT::Runtime lib/Test/C2FIT/Fixture.pm metacpan
Test::C2FIT::_Shell lib/Test/C2FIT.pm metacpan

Other Files

Changes metacpan
MANIFEST metacpan
META.yml metacpan
Makefile.PL metacpan
README metacpan