App-Automaton

 view release on metacpan or  search on metacpan

t/plugin/source/imap.t  view on Meta::CPAN

use Test::More;
use Data::Dumper;

use strict;
use warnings;

require_ok( 'App::Automaton::Plugin::Source::IMAP');

my $conf = {
	'password' => 'goodpassword',
	'server'   => 'imap.gmail.com',
	'type'     => 'IMAP',
	'ssl'      => 'yes',
	'port'     => '993',
	'account'  => 'notyourprimary@email.com'
};

ok(App::Automaton::Plugin::Source::IMAP->new(), 'new');

done_testing();



( run in 0.953 second using v1.01-cache-2.11-cpan-39bf76dae61 )