Skip to content

Commit

Permalink
Reorganize examples
Browse files Browse the repository at this point in the history
  • Loading branch information
julianrojas87 committed Aug 5, 2024
1 parent 616040c commit b5836b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions input.ttl → examples/simple.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .

<> owl:imports <./processor/echo.ttl>,
<./processor/send.ttl>,
<./processor/resc.ttl>,
<./ontology.ttl> .
<> owl:imports
<../processor/send.ttl>,
<../processor/resc.ttl>,
<../ontology.ttl> .

[ ] a rdfc-js:JSChannel ;
rdfc:reader <jr> ;
Expand Down
2 changes: 1 addition & 1 deletion test/configuration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describe("Input test", () => {

await load_store({
type: "remote",
location: safeJoin(process.cwd(), "input.ttl")
location: safeJoin(process.cwd(), "examples/simple.ttl")
}, store);

const quads = store.getQuads(null, null, null, null);
Expand Down

0 comments on commit b5836b1

Please sign in to comment.