diff options
author | Ankit Gupta <ankit.gupta8898@gmail.com> | 2015-05-10 20:47:23 -0400 |
---|---|---|
committer | Ankit Gupta <ankit.gupta8898@gmail.com> | 2015-05-10 20:48:34 -0400 |
commit | 350659412f5ee6924c7e1f1b8687f28a85e30543 (patch) | |
tree | f099605cf3cc490fb6aee1eef4977ffb4e397d7e /actionview | |
parent | 3aca4dd1afd3f618ea7a6b2a34af15f86b0ad7b7 (diff) | |
download | rails-350659412f5ee6924c7e1f1b8687f28a85e30543.tar.gz rails-350659412f5ee6924c7e1f1b8687f28a85e30543.tar.bz2 rails-350659412f5ee6924c7e1f1b8687f28a85e30543.zip |
Removed not needed includes, As record_tag_helper is moved to a gem we are not
testing is completely here now. RenderErbUtils and AM::Conversion are not used
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/test/template/record_tag_helper_test.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/actionview/test/template/record_tag_helper_test.rb b/actionview/test/template/record_tag_helper_test.rb index 4b7b653916..bfc5d04bed 100644 --- a/actionview/test/template/record_tag_helper_test.rb +++ b/actionview/test/template/record_tag_helper_test.rb @@ -2,7 +2,7 @@ require 'abstract_unit' class RecordTagPost extend ActiveModel::Naming - include ActiveModel::Conversion + attr_accessor :id, :body def initialize @@ -14,7 +14,6 @@ class RecordTagPost end class RecordTagHelperTest < ActionView::TestCase - include RenderERBUtils tests ActionView::Helpers::RecordTagHelper |