aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/fake_models.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/fake_models.rb')
-rw-r--r--actionpack/test/controller/fake_models.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/test/controller/fake_models.rb b/actionpack/test/controller/fake_models.rb
index 2761b09f2f..7420579ed8 100644
--- a/actionpack/test/controller/fake_models.rb
+++ b/actionpack/test/controller/fake_models.rb
@@ -3,3 +3,9 @@ class Customer < Struct.new(:name, :id)
id.to_s
end
end
+
+class BadCustomer < Customer
+end
+
+class GoodCustomer < Customer
+end