aboutsummaryrefslogtreecommitdiff
path: root/t/instantiate.t
blob: 1b7058c49edd0379f6c10a6912a74a53417061c8 (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.04';

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

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