File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- {:deps {org.clojure/clojure {:mvn/version " 1.8 .0" }
1
+ {:deps {org.clojure/clojure {:mvn/version " 1.10 .0" }
2
2
org.clojure/tools.cli {:mvn/version " 0.3.7" }
3
3
org.clojure/tools.logging {:mvn/version " 0.4.1" }
4
4
grafter {:mvn/version " 2.1.7" }
Original file line number Diff line number Diff line change 16
16
file-uri (str " file://" (.getAbsolutePath rel-file))
17
17
repo (parse-repository file-uri)]
18
18
(is (= 2 (count (with-open [conn (repo/->connection repo)]
19
- (rdf/statements conn)))))))
19
+ (into [] ( rdf/statements conn) )))))))
20
20
21
21
(deftest parse-repository-directory-test
22
22
(let [dir-str " test/data/test-dir"
23
23
repo (parse-repository dir-str)]
24
24
(is (= 2 (count (with-open [conn (repo/->connection repo)]
25
- (rdf/statements conn)))))))
25
+ (into [] ( rdf/statements conn) )))))))
26
26
27
27
(deftest parse-repository-file-name-test
28
28
(let [file-str " test/data/example.ttl"
29
29
repo (parse-repository file-str)]
30
30
(is (= 2 (count (with-open [conn (repo/->connection repo)]
31
- (rdf/statements conn)))))))
31
+ (into [] ( rdf/statements conn) )))))))
You can’t perform that action at this time.
0 commit comments