aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/fake_models.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-05-22 16:11:54 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-05-22 16:11:54 -0700
commitca7207838844f02f50afbb18beb0f535903f7929 (patch)
treed116ce21039e3382989bd33a581f95990c91f424 /actionpack/test/controller/fake_models.rb
parent98f856d7723bd8aa8ccc05dfb7219c897b4dcab7 (diff)
downloadrails-ca7207838844f02f50afbb18beb0f535903f7929.tar.gz
rails-ca7207838844f02f50afbb18beb0f535903f7929.tar.bz2
rails-ca7207838844f02f50afbb18beb0f535903f7929.zip
Move fake controllers and models to a common load path
Diffstat (limited to 'actionpack/test/controller/fake_models.rb')
-rw-r--r--actionpack/test/controller/fake_models.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/actionpack/test/controller/fake_models.rb b/actionpack/test/controller/fake_models.rb
deleted file mode 100644
index 0b30c79b10..0000000000
--- a/actionpack/test/controller/fake_models.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-class Customer < Struct.new(:name, :id)
- def to_param
- id.to_s
- end
-end
-
-class BadCustomer < Customer
-end
-
-class GoodCustomer < Customer
-end
-
-module Quiz
- class Question < Struct.new(:name, :id)
- def to_param
- id.to_s
- end
- end
-end