m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/__tests__
diff options
context:
space:
mode:
authorMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2017-08-22 15:35:21 -0400
committerMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2017-08-22 15:35:21 -0400
commit403f2ed88dbef7ce1bbb07a13bca4bc6e35cbcf3 (patch)
tree4c499c68f6ed5fdbe944f12205a15525e77308bd /__tests__
parent845ed56bb448e52a7f708504b91a6c5d492f228d (diff)
Lex and parse additive bonus
Diffstat (limited to '__tests__')
-rw-r--r--__tests__/lexer.test.js12
-rw-r--r--__tests__/parser.test.js12
2 files changed, 24 insertions, 0 deletions
diff --git a/__tests__/lexer.test.js b/__tests__/lexer.test.js
index 6900764..d7a4368 100644
--- a/__tests__/lexer.test.js
+++ b/__tests__/lexer.test.js
@@ -161,4 +161,16 @@ describe('lex', () => {
])
})
})
+
+ describe('bonusAdd', () => {
+ test('3d4+1', () => {
+ expect(lex('3d4+1')).toEqual([
+ { type: 'constant', value: 3 },
+ { type: 'd' },
+ { type: 'constant', value: 4 },
+ { type: 'plus' },
+ { type: 'constant', value: 1 }
+ ])
+ })
+ })
})
diff --git a/__tests__/parser.test.js b/__tests__/parser.test.js
index bc88894..350af03 100644
--- a/__tests__/parser.test.js
+++ b/__tests__/parser.test.js
@@ -139,6 +139,18 @@ describe('parse', () => {
})
})
+ it('parses additive bonuses', () => {
+ expect(parse('3d4+1')).toEqual({
+ type: 'bonusAdd',
+ left: {
+ type: 'd',
+ left: { type: 'constant', value: 3 },
+ right: { type: 'constant', value: 4 }
+ },
+ right: { type: 'constant', value: 1 }
+ })
+ })
+
describe('parsing parentheses', () => {
test('(1d6)d6', () => {
expect(parse('(1d6)d6')).toEqual({