内容

名称

TAP::Parser::Result::Comment - 注释结果标记。

版本

版本 3.44

描述

这是 TAP::Parser::Result 的子类。如果遇到注释行,将返回此类的标记。

1..1
ok 1 - woo hooo!
# this is a comment

覆盖方法

主要列出这里是为了让可怜的 pod 覆盖测试停止尖叫。它们让我整夜睡不着觉。

实例方法

comment

if ( $result->is_comment ) {
    my $comment = $result->comment;
    print "I have something to say:  $comment";
}