Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/jenkins/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Perl 抽象类和Pod::Coverage_Perl_Code Coverage_Perl Pod_Dist Zilla - Fatal编程技术网

Perl 抽象类和Pod::Coverage

Perl 抽象类和Pod::Coverage,perl,code-coverage,perl-pod,dist-zilla,Perl,Code Coverage,Perl Pod,Dist Zilla,我最近开始尝试使用Dist::Zilla来维护Path::Class。我添加了[PodCoverageTests]插件,它在Path::Class::Entity类中报告了一些失败,该类是Path::Class::File和Path::Class::Dir的抽象基类 我想要的是告诉测试代码,实体不需要文档,但它的两个派生类需要文档,即使方法只在父类中定义。有人知道这样做的方法吗?Dist::Zilla的标准POD覆盖测试使用 你应该能够说 =for Pod::Coverage . 告诉它假设所

我最近开始尝试使用
Dist::Zilla
来维护
Path::Class
。我添加了
[PodCoverageTests]
插件,它在
Path::Class::Entity
类中报告了一些失败,该类是
Path::Class::File
Path::Class::Dir
的抽象基类


我想要的是告诉测试代码,
实体
不需要文档,但它的两个派生类需要文档,即使方法只在父类中定义。有人知道这样做的方法吗?

Dist::Zilla的标准POD覆盖测试使用

你应该能够说

=for Pod::Coverage
.

告诉它假设所有内容都有文档记录。

Dist::Zilla的标准POD覆盖测试使用

你应该能够说

=for Pod::Coverage
.
让它假设所有的东西都有文档记录