[Pkg-javascript-commits] [node-shell-quote] 52/137: failing redirect tests
Bastien Roucariès
rouca at moszumanska.debian.org
Fri Aug 25 19:19:38 UTC 2017
This is an automated email from the git hooks/post-receive script.
rouca pushed a commit to branch master
in repository node-shell-quote.
commit cb94c105a4e32fac2d356b956f53aff999ae88e8
Author: James Halliday <mail at substack.net>
Date: Mon May 13 03:21:01 2013 -0700
failing redirect tests
---
test/op.js | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/test/op.js b/test/op.js
index 33facb3..2327978 100644
--- a/test/op.js
+++ b/test/op.js
@@ -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();
});
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-shell-quote.git
More information about the Pkg-javascript-commits
mailing list