• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

briandfoy / pod-perldoc / 22619602258 / 1
15%
master: 15%

Build:
DEFAULT BRANCH: master
Ran 03 Mar 2026 10:50AM UTC
Files 12
Run time 0s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

03 Mar 2026 10:49AM UTC coverage: 14.686% (-36.3%) from 50.999%
22619602258.1

push

github

web-flow
fix regex for perlapi search (#86)

perlapi entries are formatted as either

    =item foo

(before perl 5.34) or

    =item C<foo>

(perl 3.34 and later). The `(?:C<)?` part (optional prefix) makes sense in that context.

However, `(?:>)?\b` does not match as intended: `>\b` matches a `>` sign followed by a word boundary. Since `>` is not a word character, we must be at the beginning of a word and `\b` requires a word character to follow (as in `>foo`). This is never the case in perlapi and we always match `(?:>)` zero times.

Fortunately, `\b` on its own works as intended in all perlapi versions: Both `foo\n` and `foo>` are matched by `foo\b`, so just use `\b`, as before PR #76.

Also add `(?:C<)?` to the "related" search regex.

Co-authored-by: brian d foy <briandfoy@pobox.com>

220 of 1498 relevant lines covered (14.69%)

1.04 hits per line

Source Files on job 22619602258.1
  • Tree
  • List 12
  • Changed 6
  • Source Changed 0
  • Coverage Changed 6
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Build 22619602258
  • d61f2312 on github
  • Prev Job for on master (#22619149604.1)
  • Delete
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc