diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-11-29 13:55:26 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-12-09 23:09:34 +0900 |
commit | c523d75472a16dc58e2e4c4ee51eb15efe6c11f9 (patch) | |
tree | 3aa8f0c1175280d85a959585f2b0b66fecb17808 /test/content/operators/impls/MarkOperatorFactoryChain.test.ts | |
parent | 36c28a538955c0cd9d94c210372337d7a5c2a01b (diff) |
Add operators' test
Diffstat (limited to 'test/content/operators/impls/MarkOperatorFactoryChain.test.ts')
-rw-r--r-- | test/content/operators/impls/MarkOperatorFactoryChain.test.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/content/operators/impls/MarkOperatorFactoryChain.test.ts b/test/content/operators/impls/MarkOperatorFactoryChain.test.ts new file mode 100644 index 0000000..1f094dd --- /dev/null +++ b/test/content/operators/impls/MarkOperatorFactoryChain.test.ts @@ -0,0 +1,21 @@ +import * as operations from "../../../../src/shared/operations"; +import { expect } from "chai"; +import MarkOperatorFactoryChain from "../../../../src/content/operators/impls/MarkOperatorFactoryChain"; +import MockMarkKeyRepository from "../../mock/MockMarkKeyRepository"; +import EnableSetMarkOperator from "../../../../src/content/operators/impls/EnableSetMarkOperator"; +import EnableJumpMarkOperator from "../../../../src/content/operators/impls/EnableJumpMarkOperator"; + +describe("MarkOperatorFactoryChain", () => { + describe("#create", () => { + it("returns an operator", () => { + const sut = new MarkOperatorFactoryChain(new MockMarkKeyRepository()); + expect( + sut.create({ type: operations.MARK_SET_PREFIX }, 0) + ).to.be.instanceOf(EnableSetMarkOperator); + expect( + sut.create({ type: operations.MARK_JUMP_PREFIX }, 0) + ).to.be.instanceOf(EnableJumpMarkOperator); + expect(sut.create({ type: operations.SCROLL_TOP }, 0)).to.be.null; + }); + }); +}); |