File size: 848 Bytes
be5030f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
'use strict'
const TestRunner = require('test-runner')
const a = require('assert')
const Definitions = require('../../lib/option-definitions')

const runner = new TestRunner()

runner.test('.get(long option)', function () {
  const definitions = Definitions.from([ { name: 'one' } ])
  a.strictEqual(definitions.get('--one').name, 'one')
})

runner.test('.get(short option)', function () {
  const definitions = Definitions.from([ { name: 'one', alias: 'o' } ])
  a.strictEqual(definitions.get('-o').name, 'one')
})

runner.test('.get(name)', function () {
  const definitions = Definitions.from([ { name: 'one' } ])
  a.strictEqual(definitions.get('one').name, 'one')
})

runner.test('.validate()', function () {
  a.throws(function () {
    const definitions = new Definitions()
    definitions.load([ { name: 'one' }, { name: 'one' } ])
  })
})