summaryrefslogtreecommitdiff
path: root/t/04use-base-Error-Simple.t
blob: a9656bbcbee2f98bf98b12e3ad6b66c1ec9c12c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;