diff options
author | Piotr Sarnacki <drogus@gmail.com> | 2012-06-09 14:20:31 +0200 |
---|---|---|
committer | Piotr Sarnacki <drogus@gmail.com> | 2012-08-28 10:51:03 +0200 |
commit | 264624049ea02a76a84e88023f611820bfdde9eb (patch) | |
tree | 9a335e0111164fab6bed1dc0d1816c1590115157 /actionpack/test | |
parent | 7185e35971f4a18f48a7d67e5c86c2fcf87bdb66 (diff) | |
download | rails-264624049ea02a76a84e88023f611820bfdde9eb.tar.gz rails-264624049ea02a76a84e88023f611820bfdde9eb.tar.bz2 rails-264624049ea02a76a84e88023f611820bfdde9eb.zip |
Move ActionController::RecordIdentifier to ActionView
Since it's more about DOM classes and ids it belongs to Action View
better. What's more, it's more convenient to make it part of Action View
to follow the rule that Action Pack can depend on Action View, but not
the other way round.
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/template/record_identifier_test.rb (renamed from actionpack/test/controller/record_identifier_test.rb) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/record_identifier_test.rb b/actionpack/test/template/record_identifier_test.rb index eb38b81e85..a7f1420059 100644 --- a/actionpack/test/controller/record_identifier_test.rb +++ b/actionpack/test/template/record_identifier_test.rb @@ -2,7 +2,7 @@ require 'abstract_unit' require 'controller/fake_models' class RecordIdentifierTest < ActiveSupport::TestCase - include ActionController::RecordIdentifier + include ActionView::RecordIdentifier def setup @klass = Comment |