diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2006-09-29 08:04:39 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2006-09-29 08:04:39 +0000 |
commit | 4f3bf6cb23991af8fac69b67dc73844f6a92205e (patch) | |
tree | bfb4b5e74fc9bbfe61d7ad91781d2a2256348b3c /actionpack/test/fixtures | |
parent | f0152fb610df134f5b3aaeea08ab82cd9643dd5a (diff) | |
download | rails-4f3bf6cb23991af8fac69b67dc73844f6a92205e.tar.gz rails-4f3bf6cb23991af8fac69b67dc73844f6a92205e.tar.bz2 rails-4f3bf6cb23991af8fac69b67dc73844f6a92205e.zip |
Deprecate @cookies
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5205 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/fixtures')
-rw-r--r-- | actionpack/test/fixtures/deprecated_instance_variables/_cookies_ivar.rhtml | 1 | ||||
-rw-r--r-- | actionpack/test/fixtures/deprecated_instance_variables/_cookies_method.rhtml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/test/fixtures/deprecated_instance_variables/_cookies_ivar.rhtml b/actionpack/test/fixtures/deprecated_instance_variables/_cookies_ivar.rhtml new file mode 100644 index 0000000000..4e8a2d804c --- /dev/null +++ b/actionpack/test/fixtures/deprecated_instance_variables/_cookies_ivar.rhtml @@ -0,0 +1 @@ +<%= @cookies[:test] %> diff --git a/actionpack/test/fixtures/deprecated_instance_variables/_cookies_method.rhtml b/actionpack/test/fixtures/deprecated_instance_variables/_cookies_method.rhtml new file mode 100644 index 0000000000..68e88bb746 --- /dev/null +++ b/actionpack/test/fixtures/deprecated_instance_variables/_cookies_method.rhtml @@ -0,0 +1 @@ +<%= cookies[:test] %> |