aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/lib/controller
diff options
context:
space:
mode:
authorYehuda Katz <wycats@gmail.com>2009-07-20 00:27:04 +0900
committerYehuda Katz <wycats@gmail.com>2009-07-20 00:27:04 +0900
commit5ffaaa71d149c9807260c950c9a61d01fe734827 (patch)
treeb014dcbe7cc8efabebca38e9e75648905e85017e /actionpack/test/lib/controller
parent45d41d8012c605f21de51e7018fa31e1d07776eb (diff)
downloadrails-5ffaaa71d149c9807260c950c9a61d01fe734827.tar.gz
rails-5ffaaa71d149c9807260c950c9a61d01fe734827.tar.bz2
rails-5ffaaa71d149c9807260c950c9a61d01fe734827.zip
Define ActiveModel API Compliance
- Define to_model on AR - Define to_model on ActiveModel::APICompliant - Update test fixtures to be API Compliant - Start using to_model in AP
Diffstat (limited to 'actionpack/test/lib/controller')
-rw-r--r--actionpack/test/lib/controller/fake_models.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/lib/controller/fake_models.rb b/actionpack/test/lib/controller/fake_models.rb
index 9e6f14d373..07f01e1c47 100644
--- a/actionpack/test/lib/controller/fake_models.rb
+++ b/actionpack/test/lib/controller/fake_models.rb
@@ -1,7 +1,7 @@
require "active_model"
class Customer < Struct.new(:name, :id)
- extend ActiveModel::Naming
+ extend ActiveModel::APICompliant
def to_param
id.to_s
@@ -16,7 +16,7 @@ end
module Quiz
class Question < Struct.new(:name, :id)
- extend ActiveModel::Naming
+ extend ActiveModel::APICompliant
def to_param
id.to_s