-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.js
80 lines (65 loc) · 1.38 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
const test = require('ava');
const fs = require('fs');
const ditty = require('.');
test('The weird song', (assert) => {
const song = ditty(fs.readFileSync(
`${__dirname}/test/fixtures/A weird song.ditty`, 'utf8'
));
assert.is(
song.number,
'1.02'
);
assert.is(
song.title,
'My weird song'
);
assert.true(
Array.isArray(song.blocks)
);
assert.is(
song.blocks.length,
4
);
assert.same(
song.blocks.map(part => part.type),
['stanza', 'refrain', 'stanza', 'refrain']
);
assert.same(
song.blocks[0].lyrics,
'This is a stanza\n' +
'without any chords.\n'
);
assert.same(
song.blocks[1].lyrics,
'This is a refrain\n' +
'Tralalalalala\n'
);
assert.same(
song.blocks[2].lyrics,
'This stanza is indented\n' +
'and has some wild chords around\n'
);
assert.same(
song.blocks[3].lyrics,
'This is a refrain\n' +
'ridiculously indented, hey!\n'
);
});
test('“Jak ożywczy deszcz”', (assert) => {
const song = ditty(fs.readFileSync(
`${__dirname}/test/fixtures/Jak ożywczy deszcz.ditty`, 'utf8'
));
assert.is(
song.blocks[1].type,
'refrain'
);
});
test('“Duchu Święty”', (assert) => {
const song = ditty(fs.readFileSync(
`${__dirname}/test/fixtures/Duchu Święty.ditty`, 'utf8'
));
assert.is(
song.blocks[1].type,
'stanza'
);
});