move test to more appropriate place
This commit is contained in:
parent
d13259c2b2
commit
92770f4eb2
3 changed files with 19 additions and 9 deletions
|
@ -5,13 +5,6 @@
|
|||
[clojure.spec.alpha :as s]
|
||||
[org.domaindrivenarchitecture.activity-pub-poc.activitystreams2-legacy :as sut]))
|
||||
|
||||
(deftest id-test
|
||||
(is (s/valid? ::sut/id "https://social.bla/alyssa/status/RANDOMHASH")))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
;(deftest Note-test
|
||||
; (is (s/valid?
|
||||
|
|
|
@ -8,3 +8,10 @@
|
|||
(deftest shoult-test-spec-for-having-functional-property
|
||||
(is (sut/is-functional-property? ::sut/id))
|
||||
(is (not (sut/is-functional-property? ::sut/Like))))
|
||||
|
||||
(deftest id-test
|
||||
(is (s/valid? ::sut/id "https://social.bla/alyssa/status/RANDOMHASH"))
|
||||
(is (not (s/valid? ::sut/id nil)))
|
||||
(is (not (s/valid? ::sut/id 2)))
|
||||
(is (not (s/valid? ::sut/id "no-uri")))
|
||||
)
|
|
@ -1 +1,11 @@
|
|||
{"@context":"https://www.w3.org/ns/activitystreams","id":"https://social.bla/alyssa#likes/RANDOMHASH","type":"Like","to":["https://chatty.bla/ben","https://chatty.bla/gen"],"actor":"https://social.bla/alyssa","object":"https://chatty.bla/ben/posts/234s23-2g34234-2hhj536"}
|
||||
{
|
||||
"@context": "https://www.w3.org/ns/activitystreams",
|
||||
"id": "https://social.bla/alyssa#likes/RANDOMHASH",
|
||||
"type": "Like",
|
||||
"to": [
|
||||
"https://chatty.bla/ben",
|
||||
"https://chatty.bla/gen"
|
||||
],
|
||||
"actor": "https://social.bla/alyssa",
|
||||
"object": "https://chatty.bla/ben/posts/234s23-2g34234-2hhj536"
|
||||
}
|
Loading…
Reference in a new issue