aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/record_identifier_test.rb
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/controller/record_identifier_test.rb
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/controller/record_identifier_test.rb')
-rw-r--r--actionpack/test/controller/record_identifier_test.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/actionpack/test/controller/record_identifier_test.rb b/actionpack/test/controller/record_identifier_test.rb
index e46e317e31..f3e5ff8a47 100644
--- a/actionpack/test/controller/record_identifier_test.rb
+++ b/actionpack/test/controller/record_identifier_test.rb
@@ -1,19 +1,6 @@
require 'abstract_unit'
require 'controller/fake_models'
-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 RecordIdentifierTest < Test::Unit::TestCase
include ActionController::RecordIdentifier