Skip to content

Instantly share code, notes, and snippets.

@ibdknox
Created December 16, 2011 18:25
Show Gist options
  • Save ibdknox/1487249 to your computer and use it in GitHub Desktop.
Save ibdknox/1487249 to your computer and use it in GitHub Desktop.
testing sessions
(defpage "/blah/:n" {:keys [n]}
(session/put! :b n))
(deftest session-vals
(with-noir
(session/put! :b 3)
(render "/blah/:n" {:n 1})
(is (= (session/get :b) 1))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment