diff options
| author | Teddy Wing | 2015-05-31 17:40:32 -0400 |
|---|---|---|
| committer | Teddy Wing | 2015-05-31 17:40:32 -0400 |
| commit | 3322a456251b8cbc2e9da93e3f191952347b9f17 (patch) | |
| tree | 545c84ae139e897d7726dac547cbe940a0f2e3a6 /test.pl | |
| download | irssi-hipchat-stfu-3322a456251b8cbc2e9da93e3f191952347b9f17.tar.bz2 | |
Initial commit. Learning about Perl testing.
Created a basic test file using `Test::Simple` and this tutorial:
http://search.cpan.org/dist/Test-Simple/lib/Test/Tutorial.pod
Diffstat (limited to 'test.pl')
| -rwxr-xr-x | test.pl | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,8 @@ +#!/usr/bin/env perl -w + +use strict; + +use Test::Simple tests => 2; + +ok( 1 + 1 == 2 ); +ok( 2 + 2 == 5 ); |
