Skip to content

Commit

Permalink
a few more Mojo::DOM tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jan 10, 2015
1 parent c4f4cad commit 1e45509
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion t/mojo/dom.t
Expand Up @@ -4,7 +4,9 @@ use Test::More;
use Mojo::DOM;

# Empty
is(Mojo::DOM->new, '', 'right result');
is(Mojo::DOM->new, '', 'right result');
is(Mojo::DOM->new(''), '', 'right result');
is(Mojo::DOM->new->parse(''), '', 'right result');

# Simple (basics)
my $dom = Mojo::DOM->new(
Expand Down

0 comments on commit 1e45509

Please sign in to comment.