Skip to content

Commit

Permalink
another double-char op test just to be sure
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed May 13, 2013
1 parent fbc6e5c commit 5cf1bf2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/op.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ test('double operators', function (t) {
parse('beep\\&&boop||byte'),
[ 'beep&', { op: '&' }, 'boop', { op: '||' }, 'byte' ]
);
t.same(
parse('beep;;boop|&byte'),
[ 'beep', { op: ';;' }, 'boop', { op: '|&' }, 'byte' ]
);

t.end();
});

0 comments on commit 5cf1bf2

Please sign in to comment.