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');