diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2008-11-07 15:42:34 -0500 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2008-11-07 15:42:34 -0500 |
commit | c82e8e1f483ece1fbd2e9f73715fd211487620fc (patch) | |
tree | 61711ba9d97ff640c3794f480c14b3cd83264b32 /actionpack/test/activerecord | |
parent | ebf14baa0eea1d7e98090b189369c1879b05dd54 (diff) | |
download | rails-c82e8e1f483ece1fbd2e9f73715fd211487620fc.tar.gz rails-c82e8e1f483ece1fbd2e9f73715fd211487620fc.tar.bz2 rails-c82e8e1f483ece1fbd2e9f73715fd211487620fc.zip |
Move controller assertions from base TestCase to AC:: and AV::TestCase
Diffstat (limited to 'actionpack/test/activerecord')
-rw-r--r-- | actionpack/test/activerecord/render_partial_with_record_identification_test.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/actionpack/test/activerecord/render_partial_with_record_identification_test.rb b/actionpack/test/activerecord/render_partial_with_record_identification_test.rb index d75cb2b53a..822a739112 100644 --- a/actionpack/test/activerecord/render_partial_with_record_identification_test.rb +++ b/actionpack/test/activerecord/render_partial_with_record_identification_test.rb @@ -49,13 +49,6 @@ end class RenderPartialWithRecordIdentificationTest < ActiveRecordTestCase fixtures :developers, :projects, :developers_projects, :topics, :replies, :companies, :mascots - def setup - @controller = RenderPartialWithRecordIdentificationController.new - @request = ActionController::TestRequest.new - @response = ActionController::TestResponse.new - super - end - def test_rendering_partial_with_has_many_and_belongs_to_association get :render_with_has_many_and_belongs_to_association assert_template 'projects/_project' |