Created
March 29, 2012 08:57
-
-
Save tudorconstantin/2235178 to your computer and use it in GitHub Desktop.
Step definitions for Mojolicious Boilerplate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Given qr/a mojo test object for the "(.+)" application/, func ($c) { | |
use_ok( $1 ); | |
my $tm = Test::Mojo->new( $1 ); | |
ok( $tm, "Object created" ); | |
$c->stash->{'feature'}->{'tm'} = $tm; | |
ok( $c->stash->{'feature'}->{'tm'}, "Got our Test::Mojo object" ); | |
}; | |
When qr/I go to "(.+)"/, func ($c) { | |
my $route_url = ''; | |
foreach my $route ( @{ $c->stash->{feature}->{tm}->app->routes()->children } ) { | |
$route_url = $route->pattern->pattern and last if $route->name eq $1; | |
} | |
$c->stash->{'feature'}->{'tm'}->get_ok($route_url); | |
}; | |
Then qr/I should see the "(.+)"\s+(.+)$/, func ($c) { | |
if ( $2 eq 'url' ){ | |
use_ok('Mojo::DOM'); | |
my $dom = Mojo::DOM->new($c->stash->{'feature'}->{'tm'}->tx->res->body()); | |
foreach my $link ( $dom->find('a[href]')->each ) { | |
pass("Found URL with text $1") and return 1 if $link->text eq $1; | |
} | |
fail( "I have not seen $1 of type $2" ); | |
} elsif( $2 eq 'text'){ | |
ok( $c->stash->{'feature'}->{'tm'}->content_like(qr/$1/) ); | |
} else { | |
pending( "I don't know how to find $2" ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment