From 4f446a54bd57d49627658787f914f221455d586e Mon Sep 17 00:00:00 2001 From: "niten\" (aider)" Date: Sun, 8 Jun 2025 09:58:17 -0700 Subject: [PATCH] test: Add initial tests for milquetoast.api functions in api_test.clj --- test/milquetoast/api_test.clj | 38 +++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/test/milquetoast/api_test.clj b/test/milquetoast/api_test.clj index e69de29..eec8667 100644 --- a/test/milquetoast/api_test.clj +++ b/test/milquetoast/api_test.clj @@ -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 + ))