2018-05-16 10:10:23 +02:00

36 lines
1.2 KiB
JavaScript

'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 ])
})