mirror of https://github.com/01-edu/public.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.
21 lines
739 B
21 lines
739 B
5 years ago
|
export const tests = []
|
||
|
const t = (f) => tests.push(f)
|
||
|
|
||
|
t(({ eq }) => eq(words('a b c'), ['a', 'b', 'c']))
|
||
|
t(({ eq }) => eq(words('Hello world'), ['Hello', '', 'world']))
|
||
|
t(({ eq, ctx: r }) => eq(words(`${r} ${r} ${r}`), [r, r, r]))
|
||
|
|
||
|
t(({ eq }) => eq(sentence(['a', 'b', 'c']), 'a b c'))
|
||
|
t(({ eq }) => eq(sentence(['Hello', '', 'world']), 'Hello world'))
|
||
|
t(({ eq, ctx: r }) => eq(sentence([r, r, r]), `${r} ${r} ${r}`))
|
||
|
|
||
|
t(({ eq }) => eq(yell('howdy stranger ?'), 'HOWDY STRANGER ?'))
|
||
|
t(({ eq }) => eq(yell('Déjà vu'), 'DÉJÀ VU'))
|
||
|
|
||
|
t(({ eq }) => eq(whisper('DÉJÀ VU'), '*déjà vu*'))
|
||
|
t(({ eq }) => eq(whisper('HOWDY STRANGER ?'), '*howdy stranger ?*'))
|
||
|
|
||
|
Object.freeze(tests)
|
||
|
|
||
|
export const setup = () => Math.random().toString(36)
|