Initial commit

This commit is contained in:
Marcelo
2025-11-20 15:27:34 -06:00
commit cc72c9fc5d
3221 changed files with 737477 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
'use strict';
const tests = [{
description: 'Version --version',
input: '--version',
output: `1.0.0`
}, {
description: 'Help --help',
input: '--help',
output: `
Description:
Test function-simple-concat
Usage:
$ function-simple-concat [options]
Options:
--p1
--p2
`
}, {
description: '--p1=P1 --p2=P2',
input: '--p1=P1 --p2=2',
output: 'P1 2'
}];
module.exports = tests;