test: Add initial tests for milquetoast.api functions in api_test.clj

This commit is contained in:
2025-06-08 09:58:17 -07:00
parent d93ba29f4b
commit 4f446a54bd
+38
View File
@@ -0,0 +1,38 @@
(ns milquetoast.api-test
(:require [clojure.test :refer :all]
[milquetoast.api :as api]))
(deftest test-send!
(testing "send!"
;; TODO: Add your test implementation here
))
(deftest test-get!
(testing "get!"
;; TODO: Add your test implementation here
))
(deftest test-get-raw!
(testing "get-raw!"
;; TODO: Add your test implementation here
))
(deftest test-open-channel!
(testing "open-channel!"
;; TODO: Add your test implementation here
))
(deftest test-subscribe!
(testing "subscribe!"
;; TODO: Add your test implementation here
))
(deftest test-connect!
(testing "connect!"
;; TODO: Add your test implementation here
))
(deftest test-connect-json!
(testing "connect-json!"
;; TODO: Add your test implementation here
))