Skip to content

Commit

Permalink
failing redirect tests
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed May 13, 2013
1 parent 5cf1bf2 commit cb94c10
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 @@ -17,6 +17,10 @@ test('single operators', function (t) {
{ op: '(' }, 'beep', { op: ';' }, 'boop', { op: ')' }
]);

t.same(parse('beep>boop'), [ 'beep', { op: '>' }, 'boop' ]);
t.same(parse('beep 2>boop'), [ 'beep', '2', { op: '>' }, 'boop' ]);
t.same(parse('beep<boop'), [ 'beep', { op: '<' }, 'boop' ]);

t.end();
});

Expand Down

0 comments on commit cb94c10

Please sign in to comment.