Skip to content

Commit

Permalink
Add coverage for rect / rectangle shape to area-shape.html (#3659)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Dumez authored and zcorpan committed Sep 9, 2016
1 parent 552dfd0 commit b2c070b
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
{desc: 'empty string', shape: 'default', coords: "", hit: hitAll},
{desc: 'omitted coords', shape: 'DEFAULT', coords: null, hit: hitAll},

{desc: 'simple', shape: 'rect', coords: "2,2,10,10", hit: hitRect},
{desc: 'simple', shape: 'rectangle', coords: "2,2,10,10", hit: hitRect},

{desc: 'simple', shape: 'circle', coords: "20,40,10", hit: hitCircle},
{desc: 'simple', shape: 'circ', coords: "20,40,10", hit: hitCircle},
{desc: 'simple', shape: 'CIRCLE', coords: "20,40,10", hit: hitCircle},
Expand Down

0 comments on commit b2c070b

Please sign in to comment.