Generating SVG Badges with Perl

Posted on November 11, 2018. Filed under: Uncategorized | Tags: , , , , , , |

Generating SVG Badges with Perl If you’ve looked at projects on GitHub or other sites, you may have noticed the little rectangular badges (aka shields) saying things like “build passing” with a nice green background (or yellow/red if something is wrong), and if you’ve used Travis CI or Coveralls, you probably know how to get […]

Read Full Post | Make a Comment ( Comments Off on Generating SVG Badges with Perl )

Quieting Test::More

Posted on March 31, 2018. Filed under: Uncategorized | Tags: , , , , , , , |

Quieting Test::More stevieb asked: is there a way to have Test::More (or Test::Most, etc) only display failing tests? haukex replied with with following code:     use File::Spec;     Test::More->builder->output(File::Spec->devnull);

Read Full Post | Make a Comment ( Comments Off on Quieting Test::More )

Re: Quieting Test::More

Posted on July 4, 2017. Filed under: Uncategorized | Tags: , , , , |

Re: Quieting Test::More # make Test::More only display fails # (also works with Test::Most) use File::Spec; Test::More->builder->output(File::Spec->devnull);

Read Full Post | Make a Comment ( Comments Off on Re: Quieting Test::More )

Liked it here?
Why not try sites on the blogroll...