File: export.t

package info (click to toggle)
libreadonlyx-perl 1.04-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 192 kB
  • sloc: perl: 577; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!perl -I../../lib
use strict;
use Test::More;
#
use_ok('ReadonlyX', qw/Readonly Scalar Array Hash/);
#
can_ok 'main', 'Readonly';
can_ok 'main', 'Scalar';
can_ok 'main', 'Array';
can_ok 'main', 'Hash';
#
done_testing;