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.
67 lines
1.4 KiB
67 lines
1.4 KiB
5 years ago
|
export const tests = []
|
||
|
const t = (f) => tests.push(f)
|
||
|
|
||
|
t(({ code }) => code.split('\n').filter((s) => s.trim()).length < 35)
|
||
|
t(({ eq }) => eq(triangle('#', 4), _4))
|
||
|
t(({ eq }) => eq(triangle('a', 5), _5))
|
||
|
t(({ eq }) => eq(triangle('+', 10), _10))
|
||
|
t(({ eq }) => eq(triangle('{}', 29), _29))
|
||
|
|
||
|
Object.freeze(tests)
|
||
|
|
||
|
const _4 = `
|
||
|
#
|
||
|
##
|
||
|
###
|
||
|
####`.slice(1)
|
||
|
|
||
|
const _5 = `
|
||
|
a
|
||
|
aa
|
||
|
aaa
|
||
|
aaaa
|
||
|
aaaaa`.slice(1)
|
||
|
|
||
|
const _10 = `
|
||
|
+
|
||
|
++
|
||
|
+++
|
||
|
++++
|
||
|
+++++
|
||
|
++++++
|
||
|
+++++++
|
||
|
++++++++
|
||
|
+++++++++
|
||
|
++++++++++`.slice(1)
|
||
|
|
||
|
const _29 = `
|
||
|
{}
|
||
|
{}{}
|
||
|
{}{}{}
|
||
|
{}{}{}{}
|
||
|
{}{}{}{}{}
|
||
|
{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}
|
||
|
{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}`.slice(1)
|