>
> I would like to use the Test::Mojo module for external APIs
> (sites) testing.
>
> Something like this:
>
> my $t = Test::Mojo->new( path => 'http://example.com/api/v3' );
> $t->post_ok('/search.json' => form => {q => 'Perl'}) ... .
>
Already works.
my $t = Test::Mojo->new;
$t->post_ok('http://example.com/api/v3/search.json' => form => {q =>
'Perl'})...
--
sebastian
--
You received this message because you are subscribed to the Google Groups
"Mojolicious" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/mojolicious.
For more options, visit https://groups.google.com/groups/opt_out.