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