diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-05-15 18:03:43 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-07-05 21:32:43 +0900 |
commit | 21a0f2294b51f6ce78134384d34f302fb2cb8614 (patch) | |
tree | c9841c3bee7966e383221ff90ac04db009eab35e /test/content/operators/impls/FindNextOperator.test.ts | |
parent | 038de72896e748df4e63352b4bbbae24d8a851ce (diff) |
Remove legacy find
Diffstat (limited to 'test/content/operators/impls/FindNextOperator.test.ts')
-rw-r--r-- | test/content/operators/impls/FindNextOperator.test.ts | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/content/operators/impls/FindNextOperator.test.ts b/test/content/operators/impls/FindNextOperator.test.ts deleted file mode 100644 index d93d45e..0000000 --- a/test/content/operators/impls/FindNextOperator.test.ts +++ /dev/null @@ -1,17 +0,0 @@ -import sinon from "sinon"; -import FindNextOperator from "../../../../src/content/operators/impls/FindNextOperator"; -import MockFindMasterClient from "../../mock/MockFindMasterClient"; - -describe("FindNextOperator", () => { - describe("#run", () => { - it("find next keyword", async () => { - const client = new MockFindMasterClient(); - const mock = sinon.mock(client).expects("findNext").exactly(3); - const sut = new FindNextOperator(client, 3); - - await sut.run(); - - mock.verify(); - }); - }); -}); |