From 3322a456251b8cbc2e9da93e3f191952347b9f17 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 31 May 2015 17:40:32 -0400 Subject: 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 --- test.pl | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 test.pl (limited to 'test.pl') diff --git a/test.pl b/test.pl new file mode 100755 index 0000000..04aa377 --- /dev/null +++ b/test.pl @@ -0,0 +1,8 @@ +#!/usr/bin/env perl -w + +use strict; + +use Test::Simple tests => 2; + +ok( 1 + 1 == 2 ); +ok( 2 + 2 == 5 ); -- cgit v1.2.3