Started again with Rails 4
[feedcatcher.git] / vendor / rails / actionpack / test / controller / fake_models.rb
diff --git a/vendor/rails/actionpack/test/controller/fake_models.rb b/vendor/rails/actionpack/test/controller/fake_models.rb
deleted file mode 100644 (file)
index 0b30c79..0000000
+++ /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