Skip to content

Commit

Permalink
Merge pull request #838 from ThomasR/patch-1
Browse files Browse the repository at this point in the history
More tests for IPv6
  • Loading branch information
Marsup committed Mar 1, 2016
2 parents 093da6f + 6a23c86 commit cc33e4b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion test/string.js
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,15 @@ describe('string', () => {
['3:2:1::1', success],
['4:3:2:1::1', success],
['5:4:3:2:1::1', success],
['6:5:4:3:2:1::1', success]
['6:5:4:3:2:1::1', success],
['::', success],
['1::', success],
['2:1::', success],
['3:2:1::', success],
['4:3:2:1::', success],
['5:4:3:2:1::', success],
['6:5:4:3:2:1::', success],
['7:6:5:4:3:2:1::', success]
];
};

Expand Down

0 comments on commit cc33e4b

Please sign in to comment.