beast rev 2066
[beast-modified.git] / vendor / plugins / will_paginate / test / fixtures / company.rb
blob0d1c29b9068edc88e70d936148ea0c25b57a717a
1 class Company < ActiveRecord::Base
2   attr_protected :rating
3   set_sequence_name :companies_nonstd_seq
5   validates_presence_of :name
6   def validate
7     errors.add('rating', 'rating should not be 2') if rating == 2
8   end  
9 end