Add ToDos
This commit is contained in:
parent
952a2ce4da
commit
f4f70974d3
2 changed files with 9 additions and 4 deletions
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
; find definitions
|
; find definitions
|
||||||
(defn find-definitions [string-input]
|
(defn find-definitions [string-input]
|
||||||
(str/split string-input #" \."))
|
(str/split string-input #" \.")) ;ToDo this is crap, splits need tbd differently
|
||||||
|
|
||||||
|
|
||||||
; make list of vectors/map from well known input-string
|
; make list of vectors/map from well known input-string
|
||||||
|
@ -28,8 +28,7 @@
|
||||||
; {prefix:range ; range muss sich liebevoll angeschaut werden
|
; {prefix:range ; range muss sich liebevoll angeschaut werden
|
||||||
; [
|
; [
|
||||||
; prefix:Type
|
; prefix:Type
|
||||||
; prefix:Type
|
; prefix:Type
|
||||||
;
|
|
||||||
; ]}]}
|
; ]}]}
|
||||||
(defn to-map-from-def [string-input])
|
(defn to-map-from-def [string-input])
|
||||||
|
|
||||||
|
|
|
@ -24,4 +24,10 @@
|
||||||
((deftest find-definitions-test
|
((deftest find-definitions-test
|
||||||
(testing "Finding definitons"
|
(testing "Finding definitons"
|
||||||
(is (= expected-definitions
|
(is (= expected-definitions
|
||||||
(sut/find-definitions processed))))))
|
(sut/find-definitions processed))))))
|
||||||
|
|
||||||
|
;ToDo
|
||||||
|
; spec für eine property: as:name
|
||||||
|
; test für (defn ttl-file element-name [spezified predicates]) -> (str spec)
|
||||||
|
|
||||||
|
; das gleiche für as:actor
|
Loading…
Reference in a new issue