aboutsummaryrefslogtreecommitdiff
path: root/t/instantiate.t
blob: 9fbec79d3c6113b68342757f71af36b6775a02b7 (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.03';

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

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