perl-testing

Installation
SKILL.md

Perl Testing Guide

Comprehensive guide for testing Perl code using Test::More, Test::Class, and related modules.

Test::More Basics

The foundation of Perl testing.

Simple Test File

#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;

# Basic assertions
ok(1, 'truth is true');
ok(!0, 'false is not true');
Installs
27
GitHub Stars
64
First Seen
Mar 3, 2026
perl-testing — jamie-bitflight/claude_skills