Skip to content

Commit

Permalink
Add even more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JRaspass committed Dec 21, 2017
1 parent 40dab78 commit 24d2fa1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions t/attr.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
use lib 't';
use t '1';

$elem->attr('foo');

reqs_are [ [ GET => '/element/123/attribute/foo' ] ], '->attr("foo")';
6 changes: 6 additions & 0 deletions t/css.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
use lib 't';
use t '1';

$elem->css('foo');

reqs_are [ [ GET => '/element/123/css/foo' ] ], '->css("foo")';
6 changes: 6 additions & 0 deletions t/prop.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
use lib 't';
use t '1';

$elem->prop('foo');

reqs_are [ [ GET => '/element/123/property/foo' ] ], '->prop("foo")';

0 comments on commit 24d2fa1

Please sign in to comment.