mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-06-14 06:54:10 +02:00
Initial pass
This commit is contained in:
commit
39c08a0eaa
7242 changed files with 1886006 additions and 0 deletions
9
node_modules/minimist/test/parse_modified.js
generated
vendored
Normal file
9
node_modules/minimist/test/parse_modified.js
generated
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
var parse = require('../');
|
||||
var test = require('tape');
|
||||
|
||||
test('parse with modifier functions' , function (t) {
|
||||
t.plan(1);
|
||||
|
||||
var argv = parse([ '-b', '123' ], { boolean: 'b' });
|
||||
t.deepEqual(argv, { b: true, _: [123] });
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue