From d93ba29f4b1dac86ef46428aa1532ee321e2c6d5 Mon Sep 17 00:00:00 2001 From: niten Date: Sun, 8 Jun 2025 09:58:16 -0700 Subject: [PATCH] chore: Remove unused API tests from api_test.clj --- test/milquetoast/api_test.clj | 57 ----------------------------------- 1 file changed, 57 deletions(-) diff --git a/test/milquetoast/api_test.clj b/test/milquetoast/api_test.clj index d29c49c..e69de29 100644 --- a/test/milquetoast/api_test.clj +++ b/test/milquetoast/api_test.clj @@ -1,57 +0,0 @@ -(ns milquetoast.api-test - (:require [milquetoast.api :as sut] - [clojure.test :as t] - [clojure.core.async :as async])) - -(t/deftest test-send! - (t/testing "send! function" - (let [client (sut/connect! :host "localhost" :port 1883) - topic "test/topic" - msg "Hello, World!"] - (sut/send! client topic msg) - ;; Add more assertions here - ))) - -(t/deftest test-get! - (t/testing "get! function" - (let [client (sut/connect! :host "localhost" :port 1883) - topic "test/topic"] - (sut/get! client topic) - ;; Add more assertions here - ))) - -(t/deftest test-get-raw! - (t/testing "get-raw! function" - (let [client (sut/connect! :host "localhost" :port 1883) - topic "test/topic"] - (sut/get-raw! client topic) - ;; Add more assertions here - ))) - -(t/deftest test-open-channel! - (t/testing "open-channel! function" - (let [client (sut/connect! :host "localhost" :port 1883) - topic "test/topic"] - (sut/open-channel! client topic) - ;; Add more assertions here - ))) - -(t/deftest test-subscribe! - (t/testing "subscribe! function" - (let [client (sut/connect! :host "localhost" :port 1883) - topic "test/topic"] - (sut/subscribe! client topic) - ;; Add more assertions here - ))) - -(t/deftest test-connect! - (t/testing "connect! function" - (let [client (sut/connect! :host "localhost" :port 1883)] - ;; Add assertions here - ))) - -(t/deftest test-connect-json! - (t/testing "connect-json! function" - (let [client (sut/connect-json! :host "localhost" :port 1883)] - ;; Add assertions here - )))