aboutsummaryrefslogtreecommitdiff
path: root/t/instantiate.t
blob: 6a55fe0977c1ba0de847457ccf7bb285ae6660c2 (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.05';

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

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