Skip to content

Commit f0c077e

Browse files
author
Thom
committed
test: remove tests which cover removed behaviour
1 parent e6d3089 commit f0c077e

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

src/__tests__/RDFStore.spec.ts

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,6 @@ describe("RDFStore", () => {
7070
.toHaveLength(1);
7171
});
7272
});
73-
74-
describe("small big", () => {
75-
it("equates existing data", () => {
76-
const store = getBasicStore();
77-
store.store.addQuads(thingIsAbout);
78-
store.store.addQuads(thingStatements);
79-
expect(store.store.match(schema.AboutPage, rdfs.label, rdfFactory.literal("Thing.")))
80-
.toHaveLength(1);
81-
});
82-
});
8373
});
8474
});
8575

@@ -298,19 +288,6 @@ describe("RDFStore", () => {
298288

299289
describe("owl:sameAs", () => {
300290
describe("big small", () => {
301-
it("equal before", () => {
302-
const store = getBasicStore();
303-
store.store.addQuads(aboutIsThing);
304-
store.store.addQuads(thingStatements);
305-
306-
store.store.removeResource(schema.AboutPage);
307-
308-
expect(store.store.match(schema.AboutPage, rdfs.label, rdfFactory.literal("Thing.")))
309-
.toHaveLength(0);
310-
expect(store.store.match(schemaT, rdfs.label, rdfFactory.literal("Thing.")))
311-
.toHaveLength(0);
312-
});
313-
314291
it("equal after", () => {
315292
const store = getBasicStore();
316293
store.store.addQuads(thingStatements);

0 commit comments

Comments
 (0)