mirror of https://github.com/lukechilds/ow.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
688 B
18 lines
688 B
import test from 'ava';
|
|
import * as m from '..';
|
|
|
|
test('string', t => {
|
|
t.notThrows(() => m('foo', m.string));
|
|
t.throws(() => m(12, m.string), 'Expected argument to be of type `string` but received type `number`');
|
|
});
|
|
|
|
test('string.minLength', t => {
|
|
t.notThrows(() => m('foo', m.string.minLength(2)));
|
|
t.notThrows(() => m('foo', m.string.minLength(3)));
|
|
t.throws(() => m('foo', m.string.minLength(4)), 'Expected string length to be minimum 4');
|
|
});
|
|
|
|
test('string.alphanumeric', t => {
|
|
t.notThrows(() => m('Foo123', m.string.alphanumeric));
|
|
t.throws(() => m('Foo123!', m.string.alphanumeric), 'Expected string to contain only alphanumeric characters but received `Foo123!`');
|
|
});
|
|
|