aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtest.pl8
1 files changed, 8 insertions, 0 deletions
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 );