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