aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/lib
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-10-03 14:11:34 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-10-03 14:40:06 -0700
commit18a7b767e8ad545702c1025fc9cc7a1cc3c64f28 (patch)
treec80347ab3dd3f17d992ce4404df84e242a597eeb /actionpack/test/lib
parentadfd43a4daf08cc9a801a0b6a039dd109ce4e81f (diff)
downloadrails-18a7b767e8ad545702c1025fc9cc7a1cc3c64f28.tar.gz
rails-18a7b767e8ad545702c1025fc9cc7a1cc3c64f28.tar.bz2
rails-18a7b767e8ad545702c1025fc9cc7a1cc3c64f28.zip
moving fake model to the correct file
Diffstat (limited to 'actionpack/test/lib')
-rw-r--r--actionpack/test/lib/controller/fake_models.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/actionpack/test/lib/controller/fake_models.rb b/actionpack/test/lib/controller/fake_models.rb
index 8cb3b4940a..cf3f2f7fa4 100644
--- a/actionpack/test/lib/controller/fake_models.rb
+++ b/actionpack/test/lib/controller/fake_models.rb
@@ -130,6 +130,20 @@ class CommentRelevance
end
end
+class Sheep
+ extend ActiveModel::Naming
+ include ActiveModel::Conversion
+
+ attr_reader :id
+ def to_key; id ? [id] : nil end
+ def save; @id = 1 end
+ def new_record?; @id.nil? end
+ def name
+ @id.nil? ? 'new sheep' : "sheep ##{@id}"
+ end
+end
+
+
class TagRelevance
extend ActiveModel::Naming
include ActiveModel::Conversion