147f04ca76
* Kubernetes 1.8 reference docs * Kubectl reference docs for 1.8 * Update side bar with 1.8 kubectl and api ref docs links
9 lines
207 B
JavaScript
9 lines
207 B
JavaScript
var optimist = require('../');
|
|
var test = require('tap').test;
|
|
|
|
test('whitespace should be whitespace' , function (t) {
|
|
t.plan(1);
|
|
var x = optimist.parse([ '-x', '\t' ]).x;
|
|
t.equal(x, '\t');
|
|
});
|