summaryrefslogtreecommitdiff
path: root/t/04use-base-Error-Simple.t
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2012-05-08 18:20:12 +0000
committerLorry <lorry@roadtrain.codethink.co.uk>2012-10-03 12:23:37 +0000
commit661707e7bd4282aeab5a2f6a8f02ca5731fd813f (patch)
tree9b32ff910278233ad929888499ca8380f2696582 /t/04use-base-Error-Simple.t
downloaderror-perl-tarball-661707e7bd4282aeab5a2f6a8f02ca5731fd813f.tar.gz
Imported from /srv/lorry/lorry-area/error-perl-tarball/Error-0.17018.tar.gz.baserock/morph
Diffstat (limited to 't/04use-base-Error-Simple.t')
-rw-r--r--t/04use-base-Error-Simple.t18
1 files changed, 18 insertions, 0 deletions
diff --git a/t/04use-base-Error-Simple.t b/t/04use-base-Error-Simple.t
new file mode 100644
index 0000000..a9656bb
--- /dev/null
+++ b/t/04use-base-Error-Simple.t
@@ -0,0 +1,18 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+use Test::More tests => 1;
+
+package Error::MyError;
+
+use base 'Error::Simple';
+
+package main;
+
+# TEST
+ok(1, "Testing that the use base worked.");
+
+1;
+