From e7383cc38bf2182e5ab95f30d639fe4a0317fd51 Mon Sep 17 00:00:00 2001 From: Marcin Chrzanowski Date: Tue, 5 Sep 2017 22:43:38 -0400 Subject: Implement bonus division --- __tests__/lexer.test.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to '__tests__/lexer.test.js') diff --git a/__tests__/lexer.test.js b/__tests__/lexer.test.js index 31150bc..7124746 100644 --- a/__tests__/lexer.test.js +++ b/__tests__/lexer.test.js @@ -253,6 +253,18 @@ describe('lex', () => { }) }) + describe('bonusDivide', () => { + test('3d4/1', () => { + expect(lex('3d4/1')).toEqual([ + { type: 'constant', value: 3 }, + { type: 'd' }, + { type: 'constant', value: 4 }, + { type: 'divide' }, + { type: 'constant', value: 1 } + ]) + }) + }) + describe('again', () => { test('6A3d6', () => { expect(lex('6A3d6')).toEqual([ -- cgit v1.2.3