Skip to content

Commit

Permalink
Add tests for Esperanto validation
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinvanderVliet authored Sep 10, 2023
1 parent 0d557ba commit 322752e
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions test/validators.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2048,6 +2048,23 @@ describe('Validators', () => {
});
});

it('should validate Esperanto alpha strings', () => {
test({
validator: 'isAlpha',
args: ['eo'],
valid: [
'eĥoŝanĝo ĉiuĵaŭde',
'EĤOŜANĜO ĈIUĴAŬDE',
'Esperanto',
'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj',
],
invalid: [
'qwxyz',
'1887',
],
});
});

it('should error on invalid locale', () => {
test({
validator: 'isAlpha',
Expand Down Expand Up @@ -2735,6 +2752,23 @@ describe('Validators', () => {
});
});

it('should validate Esperanto alphanumeric strings', () => {
test({
validator: 'isAlphanumeric',
args: ['eo'],
valid: [
'eĥoŝanĝo ĉiuĵaŭde 0123456789',
'EĤOŜANĜO ĈIUĴAŬDE 0123456789',
'Esperanto 1887',
'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj',
],
invalid: [
'qwxyz',
'qwxyz 123',
],
});
});

it('should error on invalid locale', () => {
test({
validator: 'isAlphanumeric',
Expand Down

0 comments on commit 322752e

Please sign in to comment.