File: create.t

package info (click to toggle)
ciphersaber 1.01-2.2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 144 kB
  • sloc: perl: 313; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 232 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!perl -w

BEGIN
{
	chdir 't' if -d 't';
}

use strict;
use Test::More tests => 2;

my $module = 'Crypt::CipherSaber';
use_ok( $module );

# first, try to create an object
my $cs = $module->new('first key');
isa_ok( $cs, $module );