File size: 1,188 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
30
31
32
33
34
35
36
'use strict'
const TestRunner = require('test-runner')
const Option = require('../../lib/option')
const a = require('assert')

const runner = new TestRunner()

runner.test('option.set(): defaultValue', function () {
  const option = new Option({ name: 'two', defaultValue: 'two' })
  a.strictEqual(option.get(), 'two')
  option.set('zwei')
  a.strictEqual(option.get(), 'zwei')
})

runner.test('option.set(): multiple defaultValue', function () {
  const option = new Option({ name: 'two', multiple: true, defaultValue: [ 'two', 'zwei' ] })
  a.deepStrictEqual(option.get(), [ 'two', 'zwei' ])
  option.set('duo')
  a.deepStrictEqual(option.get(), [ 'duo' ])
})

runner.test('option.set(): falsy defaultValue', function () {
  const option = new Option({ name: 'one', defaultValue: 0 })
  a.strictEqual(option.get(), 0)
})

runner.test('option.set(): falsy defaultValue 2', function () {
  const option = new Option({ name: 'two', defaultValue: false })
  a.strictEqual(option.get(), false)
})

runner.test('option.set(): falsy defaultValue multiple', function () {
  const option = new Option({ name: 'one', defaultValue: 0, multiple: true })
  a.deepStrictEqual(option.get(), [ 0 ])
})