mirror of
https://gitea.com/actions/setup-python.git
synced 2024-11-22 18:19:35 +01:00
8 lines
207 B
JavaScript
8 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');
|
|
});
|