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 + ))