aboutsummaryrefslogtreecommitdiff
path: root/t/instantiate.t
blob: 3b1e02c03134b91899e3e04840458036019fddc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!perl -T

use strict;
use warnings;
use utf8;

use Test::More tests => 1;

use Mail::Run::Crypt;

our $VERSION = '0.02';

my $mrc = Mail::Run::Crypt->new( mailto => 'nobody@example.com' );

isnt( $mrc, undef, 'instantiate' );