diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2006-09-29 08:26:45 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2006-09-29 08:26:45 +0000 |
commit | d15d15b2c236a556f89536961adf2de7f1fd04dc (patch) | |
tree | 37f35f4cec5c7bdf34cbf6fbcd2a5ef44cf8a97c /actionpack/test | |
parent | d7b5b44a0e6fddb772c1c0779489c17e1caa4a39 (diff) | |
download | rails-d15d15b2c236a556f89536961adf2de7f1fd04dc.tar.gz rails-d15d15b2c236a556f89536961adf2de7f1fd04dc.tar.bz2 rails-d15d15b2c236a556f89536961adf2de7f1fd04dc.zip |
Deprecate @response
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5207 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/fixtures/deprecated_instance_variables/_response_ivar.rhtml | 1 | ||||
-rw-r--r-- | actionpack/test/fixtures/deprecated_instance_variables/_response_method.rhtml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/test/fixtures/deprecated_instance_variables/_response_ivar.rhtml b/actionpack/test/fixtures/deprecated_instance_variables/_response_ivar.rhtml new file mode 100644 index 0000000000..2f12d2ce32 --- /dev/null +++ b/actionpack/test/fixtures/deprecated_instance_variables/_response_ivar.rhtml @@ -0,0 +1 @@ +<%= @response.body %> diff --git a/actionpack/test/fixtures/deprecated_instance_variables/_response_method.rhtml b/actionpack/test/fixtures/deprecated_instance_variables/_response_method.rhtml new file mode 100644 index 0000000000..948c75929a --- /dev/null +++ b/actionpack/test/fixtures/deprecated_instance_variables/_response_method.rhtml @@ -0,0 +1 @@ +<%= response.body %> |