used to test validations

Methods
A
D
S
Attributes
[RW] developers_log
Class Public methods
all_as_method()
# File activerecord/test/models/project.rb, line 32
def self.all_as_method
  all
end
Instance Public methods
description_greater_than_three_letters()

to test the validate callback works

# File activeresource/test/fixtures/project.rb, line 14
def description_greater_than_three_letters
  errors.add :description, 'must be greater than three letters long' if description.length < 3 unless description.blank?
end
set_developers_log()
# File activerecord/test/models/project.rb, line 28
def set_developers_log
  @developers_log = []
end