test: Add initial tests for milquetoast.core functions in core_test.clj
This commit is contained in:
@@ -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
|
||||
))
|
||||
|
||||
Reference in New Issue
Block a user