First commit
This commit is contained in:
24
node_modules/@ldapjs/dn/lib/utils/is-dotted-decimal.test.js
generated
vendored
Normal file
24
node_modules/@ldapjs/dn/lib/utils/is-dotted-decimal.test.js
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
'use strict'
|
||||
|
||||
const tap = require('tap')
|
||||
const isDottedDecimal = require('./is-dotted-decimal')
|
||||
|
||||
tap.test('false for non-string', async t => {
|
||||
t.equal(isDottedDecimal(), false)
|
||||
})
|
||||
|
||||
tap.test('false for empty string', async t => {
|
||||
t.equal(isDottedDecimal(''), false)
|
||||
})
|
||||
|
||||
tap.test('false for alpha string', async t => {
|
||||
t.equal(isDottedDecimal('foo'), false)
|
||||
})
|
||||
|
||||
tap.test('false for alpha-num string', async t => {
|
||||
t.equal(isDottedDecimal('foo.123'), false)
|
||||
})
|
||||
|
||||
tap.test('true for valid string', async t => {
|
||||
t.equal(isDottedDecimal('1.2.3'), true)
|
||||
})
|
||||
Reference in New Issue
Block a user