diff options
author | Michael Koziarski <michael@koziarski.com> | 2010-04-09 11:28:19 +1200 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2010-04-09 11:30:39 +1200 |
commit | 82514c2897a43ab58239af1fb24f8f0de2a0d989 (patch) | |
tree | ee0f76d8565a98eae7d31461b5ce902ff441e228 /actionpack/lib | |
parent | 5f808b865cc0bbb10af7733cc0c4da3add572a95 (diff) | |
download | rails-82514c2897a43ab58239af1fb24f8f0de2a0d989.tar.gz rails-82514c2897a43ab58239af1fb24f8f0de2a0d989.tar.bz2 rails-82514c2897a43ab58239af1fb24f8f0de2a0d989.zip |
Add accessors for request and response so tests don't have to mess with internal ivars
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/test_case.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb index 2d4cf2fafb..dfd8e75bcc 100644 --- a/actionpack/lib/action_controller/test_case.rb +++ b/actionpack/lib/action_controller/test_case.rb @@ -284,6 +284,8 @@ module ActionController include ActionDispatch::TestProcess include ActionController::TemplateAssertions + attr_reader :response, :request + # Executes a request simulating GET HTTP method and set/volley the response def get(action, parameters = nil, session = nil, flash = nil) process(action, parameters, session, flash, "GET") |