blob: d57401da0b5d2ffa995672e3b46a8a5f856a987f [file] [log] [blame]
var test = require('tap').test
var v = require('../npm-user-validate.js').pw
test('pw contains a \'', function (t) {
err = v('\'')
t.type(err, 'null')
t.end()
})
test('pw contains a :', function (t) {
err = v(':')
t.type(err, 'null')
t.end()
})
test('pw contains a @', function (t) {
err = v('@')
t.notOk(err, 'null')
t.end()
})
test('pw contains a "', function (t) {
err = v('"')
t.type(err, 'null')
t.end()
})
test('pw is ok', function (t) {
err = v('duck')
t.type(err, 'null')
t.end()
})