diff --git a/publisher/test/net/deertopia/publisher/roam-test.db b/publisher/test/net/deertopia/publisher/roam-test.db new file mode 100644 index 0000000..78720ec Binary files /dev/null and b/publisher/test/net/deertopia/publisher/roam-test.db differ diff --git a/publisher/test/net/deertopia/publisher/roam-test/20260325083230-awesome_file.org b/publisher/test/net/deertopia/publisher/roam-test/20260325083230-awesome_file.org new file mode 100644 index 0000000..0367438 --- /dev/null +++ b/publisher/test/net/deertopia/publisher/roam-test/20260325083230-awesome_file.org @@ -0,0 +1,7 @@ +:PROPERTIES: +:ID: 23ee464d-b13e-4649-826f-622d0edef24e +:DeertopiaVisibility: public +:END: +#+title: awesome file + +wow! diff --git a/publisher/test/net/deertopia/publisher/server_test.clj b/publisher/test/net/deertopia/publisher/server_test.clj index eea3c69..683f7f6 100644 --- a/publisher/test/net/deertopia/publisher/server_test.clj +++ b/publisher/test/net/deertopia/publisher/server_test.clj @@ -7,16 +7,10 @@ [net.deertopia.publisher :as-alias publisher])) (t/deftest server-is-running - ;; 서버가 벌써 시작한 다음에 이 테스트 하면 잘못됩니다. + ;; 서버는 벌써 시작한 다음에 이 테스트 하면 잘못됩니다. (assert (not= :running (sut/status))) (sut/start!) (t/is (= :running (sut/status))) - (sut/stop!)) - -(t/deftest can-get-real-server-root - ;; 서버가 벌써 시작한 다음에 이 테스트 하면 잘못됩니다. - (assert (not= :running (sut/status))) - (sut/start!) (t/is (->> (format "http://localhost:%d" (::publisher/port cfg/*cfg*)) slurp string?))