diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2011-06-05 12:34:27 +0100 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2011-06-05 12:34:27 +0100 |
commit | e864ff7259ed9e4c61a146c635aedc3c60779931 (patch) | |
tree | 91d3d05ece03c08ee4c6b7944b505e9e6b06f0ed /ci | |
parent | 0a9270417c8eb03891ec161622bcf81e5cb8af02 (diff) | |
download | rails-e864ff7259ed9e4c61a146c635aedc3c60779931.tar.gz rails-e864ff7259ed9e4c61a146c635aedc3c60779931.tar.bz2 rails-e864ff7259ed9e4c61a146c635aedc3c60779931.zip |
Add backward compatibility for testing cookies
This commit restores the ability to assign cookies for testing via
@request.env['HTTP_COOKIE'] and @request.cookies, e.g:
@request.env['HTTP_COOKIE'] = 'user_name=david'
get :index
assert_equal 'david', cookies[:user_name]
and
@request.cookies[:user_name] = 'david'
get :index
assert_equal 'david', cookies[:user_name]
Assigning via cookies[] is the preferred method and will take precedence
over the other two methods. This is so that cookies set in controller
actions have precedence and are carried over between calls to get, post, etc.
Diffstat (limited to 'ci')
0 files changed, 0 insertions, 0 deletions