test: Add initial tests for milquetoast.core functions in core_test.clj

This commit is contained in:
2025-06-08 09:59:55 -07:00
parent 75bf670fae
commit 1e7cbbdc29
+43
View File
@@ -0,0 +1,43 @@
(ns milquetoast.core-test
(:require [clojure.test :refer :all]
[milquetoast.core :as core]))
(deftest test-create-client
(testing "create-client"
;; TODO: Add your test implementation here
))
(deftest test-create-json-client
(testing "create-json-client"
;; TODO: Add your test implementation here
))
(deftest test-send-message!
(testing "send-message!"
;; TODO: Add your test implementation here
))
(deftest test-stop!
(testing "stop!"
;; TODO: Add your test implementation here
))
(deftest test-add-channel!
(testing "add-channel!"
;; TODO: Add your test implementation here
))
(deftest test-subscribe-topic!
(testing "subscribe-topic!"
;; TODO: Add your test implementation here
))
(deftest test-get-topic!
(testing "get-topic!"
;; TODO: Add your test implementation here
))
(deftest test-get-topic-raw!
(testing "get-topic-raw!"
;; TODO: Add your test implementation here
))