aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/lib/controller/fake_models.rb
blob: 9e6f14d373e38db08d843ba462a987278cdfa3b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require "active_model"

class Customer < Struct.new(:name, :id)
  extend ActiveModel::Naming

  def to_param
    id.to_s
  end
end

class BadCustomer < Customer
end

class GoodCustomer < Customer
end

module Quiz
  class Question < Struct.new(:name, :id)
    extend ActiveModel::Naming

    def to_param
      id.to_s
    end
  end
end