projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
90b90752c2f4ba9ed02e3571bf68ec11dfd0b733
[platform/framework/web/crosswalk-tizen.git]
/
1
var optimist = require('../');
2
var test = require('tap').test;
3
4
test('whitespace should be whitespace' , function (t) {
5
t.plan(1);
6
var x = optimist.parse([ '-x', '\t' ]).x;
7
t.equal(x, '\t');
8
});