File: 04use-base-Error-Simple.t

package info (click to toggle)
liberror-perl 0.17-1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze, wheezy
  • size: 196 kB
  • ctags: 63
  • sloc: perl: 1,056; makefile: 38
file content (18 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (7)
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;