From d7674637f9ac7c9764a4fe09dbc15ee239ce5a77 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Fri, 29 Sep 2006 07:34:02 +0000 Subject: Deprecation: @request will be removed after 1.2. Use the request method instead. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5201 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- .../test/fixtures/deprecated_instance_variables/_request_ivar.rhtml | 1 + .../test/fixtures/deprecated_instance_variables/_request_method.rhtml | 1 + 2 files changed, 2 insertions(+) create mode 100644 actionpack/test/fixtures/deprecated_instance_variables/_request_ivar.rhtml create mode 100644 actionpack/test/fixtures/deprecated_instance_variables/_request_method.rhtml (limited to 'actionpack/test/fixtures') diff --git a/actionpack/test/fixtures/deprecated_instance_variables/_request_ivar.rhtml b/actionpack/test/fixtures/deprecated_instance_variables/_request_ivar.rhtml new file mode 100644 index 0000000000..a1680c23d5 --- /dev/null +++ b/actionpack/test/fixtures/deprecated_instance_variables/_request_ivar.rhtml @@ -0,0 +1 @@ +<%= @request.method %> diff --git a/actionpack/test/fixtures/deprecated_instance_variables/_request_method.rhtml b/actionpack/test/fixtures/deprecated_instance_variables/_request_method.rhtml new file mode 100644 index 0000000000..0c74cf1c1b --- /dev/null +++ b/actionpack/test/fixtures/deprecated_instance_variables/_request_method.rhtml @@ -0,0 +1 @@ +<%= request.method %> -- cgit v1.2.3