Skip to content

Instantly share code, notes, and snippets.

@raycmorgan
Created October 8, 2009 22:52
Show Gist options
  • Save raycmorgan/205495 to your computer and use it in GitHub Desktop.
Save raycmorgan/205495 to your computer and use it in GitHub Desktop.
function test_getCookie() {
this.req.header = {Cookie: 'foo=bar; '};
assertMatch(this.request.cookie.foo, "bar");
this.req.header = {};
assertMatch(this.request.cookie.foo, "bar");
this.req.header = {Cookie: 'foo=bar; baz=qux'};
assertMatch(this.request.cookie.foo, "bar");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment