4

I'm trying out Clojure web development with Ring + Compojure + lib-noir, and I can't figure out how to test the session state.

4

2 に答える 2

0

リングでの実際のセッション テストに使用されるスタイルを模倣できると思います: https://github.com/ring-clojure/ring/blob/master/ring-core/test/ring/middleware/session/test/cookie .clj .

Cookie ストアを作成し、読み取り/書き込みを行い、それに応じてハンドラーが応答することをアサートします。lib-noir も使用している場合、おそらく次の例の方が適切です: https://github.com/noir-clojure/lib-noir/blob/master/test/noir/session_test.clj

于 2014-08-02T02:29:20.873 に答える