From 8a028651927fc82278db8060a3f80cfae2c87596 Mon Sep 17 00:00:00 2001 From: Michael Jerger Date: Sat, 22 Jul 2023 19:46:09 +0200 Subject: [PATCH] mv test to correct place --- .../activity_pub_poc}/activitystreams2_test.clj | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename src/test/cljc/org/{ => domaindrivenarchitecture/activity_pub_poc}/activitystreams2_test.clj (64%) diff --git a/src/test/cljc/org/activitystreams2_test.clj b/src/test/cljc/org/domaindrivenarchitecture/activity_pub_poc/activitystreams2_test.clj similarity index 64% rename from src/test/cljc/org/activitystreams2_test.clj rename to src/test/cljc/org/domaindrivenarchitecture/activity_pub_poc/activitystreams2_test.clj index 5944812..08f784d 100644 --- a/src/test/cljc/org/activitystreams2_test.clj +++ b/src/test/cljc/org/domaindrivenarchitecture/activity_pub_poc/activitystreams2_test.clj @@ -5,5 +5,6 @@ [clojure.spec.alpha :as s] [org.domaindrivenarchitecture.activity-pub-poc.activitystreams2 :as sut])) -(deftest id-test - (is true)) \ No newline at end of file +(deftest shoult-test-spec-for-having-functional-property + (is (sut/is-functional-property? ::sut/id)) + (is (not (sut/is-functional-property? ::sut/Like)))) \ No newline at end of file