To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / vendor / plugins / classic_pagination / test / fixtures / company.rb @ 442:753f1380d6bc

History | View | Annotate | Download (225 Bytes)

1
class Company < ActiveRecord::Base
2
  attr_protected :rating
3
  set_sequence_name :companies_nonstd_seq
4

    
5
  validates_presence_of :name
6
  def validate
7
    errors.add('rating', 'rating should not be 2') if rating == 2
8
  end  
9
end