From b1ae1086a4fcfa69c7fa70e5964923a7c9e1003c Mon Sep 17 00:00:00 2001 From: jluehrs2 Date: Wed, 30 Jan 2008 21:34:54 -0500 Subject: Initial import of Games::Word --- t/000-load.t | 7 +++++++ t/001-basic.t | 8 ++++++++ 2 files changed, 15 insertions(+) create mode 100644 t/000-load.t create mode 100644 t/001-basic.t (limited to 't') diff --git a/t/000-load.t b/t/000-load.t new file mode 100644 index 0000000..6cafcf3 --- /dev/null +++ b/t/000-load.t @@ -0,0 +1,7 @@ +#!perl -T +use strict; +use warnings; +use Test::More tests => 1; + +use_ok 'Games::Word'; + diff --git a/t/001-basic.t b/t/001-basic.t new file mode 100644 index 0000000..4043c35 --- /dev/null +++ b/t/001-basic.t @@ -0,0 +1,8 @@ +#!perl -T +use strict; +use warnings; +use Test::More tests => 1; +use Games::Word; + +ok(1); + -- cgit v1.2.3-54-g00ecf