This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-05-21
Channels
- # aws (2)
- # bangalore-clj (1)
- # beginners (25)
- # boot (2)
- # cider (176)
- # clara (73)
- # cljs-dev (6)
- # cljsrn (31)
- # clojure (40)
- # clojure-greece (9)
- # clojure-india (1)
- # clojure-italy (14)
- # clojure-nl (9)
- # clojure-russia (4)
- # clojure-uk (156)
- # clojurescript (124)
- # core-async (37)
- # cursive (2)
- # data-science (2)
- # datomic (22)
- # emacs (3)
- # fulcro (32)
- # graphql (6)
- # java (3)
- # lein-figwheel (19)
- # lumo (29)
- # nyc (1)
- # off-topic (9)
- # onyx (15)
- # portkey (12)
- # precept (2)
- # re-frame (15)
- # reagent (10)
- # rum (7)
- # schema (2)
- # shadow-cljs (48)
- # tools-deps (35)
- # yada (1)
hello, i'm having a problem testing a yada handler that receives arguments via request body
(let [request-body {:long-url ""}]
(yada/response-for (a-yada-resource) :post "" {:body (json/generate-string request-body)})
this response in this test returns:
... :body "No body present but body is expected fo
r request.\r\n\r\n{:status 400}\n
any idea what i'm doing wrong? I don't fully understand how to use the yada/response-for function. It worked for tests with url parameters, but not with parameters passed via the request body