Open dboehmer opened 3 years ago
A minimal test for this that runs faster than the test suite:
use strict;
use warnings;
use lib 't/lib';
use Test::Coocook;
use Test::Most;
my $t = Test::Coocook->new;
$t->get_ok('/settings');
$t->login_ok( 'john_doe', 'P@ssw0rd' );
$t->submit_form_ok( { with_fields => { new_email => 'foo@example.com' } } );
note $t->emails->[0]{email}->as_string;
done_testing;
That is not exactly what we wanted:
For an example see https://travis-ci.org/github/dboehmer/coocook/jobs/752858214
@moseschmiedel already inspected this and filed https://github.com/dhoss/catalyst-view-email/issues/15
Looking at https://github.com/dhoss/catalyst-view-email/issues/10 it seems the current maintainers will probably not take care of this.