aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2014-09-07 21:19:49 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2014-09-07 21:19:49 -0500
commit42e69c352fc58f9af2c09dd7e8a7fa70bfe46898 (patch)
treeb80aa1f635dc9a63cc03640ae9453050cdc343ea
parent23d1b92f97ca1d81847fb5ee5b581da5324334fe (diff)
parent90c06717bc675b602f281a29286871236f21d13e (diff)
downloadrails-42e69c352fc58f9af2c09dd7e8a7fa70bfe46898.tar.gz
rails-42e69c352fc58f9af2c09dd7e8a7fa70bfe46898.tar.bz2
rails-42e69c352fc58f9af2c09dd7e8a7fa70bfe46898.zip
Merge pull request #16834 from tchandy/removing_unused_fake_models
Removing unused fake models
-rw-r--r--actionpack/test/lib/controller/fake_models.rb45
1 files changed, 0 insertions, 45 deletions
diff --git a/actionpack/test/lib/controller/fake_models.rb b/actionpack/test/lib/controller/fake_models.rb
index b8b51d86c2..ce9522d12a 100644
--- a/actionpack/test/lib/controller/fake_models.rb
+++ b/actionpack/test/lib/controller/fake_models.rb
@@ -28,30 +28,6 @@ class Customer < Struct.new(:name, :id)
end
end
-class ValidatedCustomer < Customer
- def errors
- if name =~ /Sikachu/i
- []
- else
- [{:name => "is invalid"}]
- end
- end
-end
-
-module Quiz
- class Question < Struct.new(:name, :id)
- extend ActiveModel::Naming
- include ActiveModel::Conversion
-
- def persisted?
- id.present?
- end
- end
-
- class Store < Question
- end
-end
-
class Post < Struct.new(:title, :author_name, :body, :secret, :persisted, :written_on, :cost)
extend ActiveModel::Naming
include ActiveModel::Conversion
@@ -95,24 +71,3 @@ class Comment
attr_accessor :body
end
-
-module Blog
- def self.use_relative_model_naming?
- true
- end
-
- class Post < Struct.new(:title, :id)
- extend ActiveModel::Naming
- include ActiveModel::Conversion
-
- def persisted?
- id.present?
- end
- end
-end
-
-class RenderJsonTestException < Exception
- def as_json(options = nil)
- { :error => self.class.name, :message => self.to_s }
- end
-end