aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/fixtures/company.rb
blob: 9f527acdd897874a35a4715bf06385fd880106e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
class Company < ActiveRecord::Base
  has_one :mascot
  self.sequence_name = :companies_nonstd_seq

  validates_presence_of :name
  def validate
    errors.add("rating", "rating should not be 2") if rating == 2
  end
end