First, I have a valid factory/model, and this particular test runs fine through the console.
model
validate :some_condition
def some_condition
errors.add(:attribute, "cannot be less than 5") if self.attribute < 5
end
test
it "should not allow values above 5" do
model = FactoryGirl.create(:model) # creates valid model
model.attribute = 10
model.valid?.should be_false
end
In the console:
model = FactoryGirl.create(:model)
model.attribute = 10
model.valid? # => false
In rspec
undefined method `<' for nil:NilClass
I cannot fathom why this is happening. It is obviously something to do with self.attribute, but why would it work in the console, yet not in the tests? attribute alone also returns same error, and I've checked, - self is defined as model instance. Regardless, this doesn't explain the inconsistency. It works in the console with exactly the same model and attributes.
To note: I have restarted all environments, this is based on a fresh reload.
update
In an act of desperation, I have outputted attribute in several contexts before this condition, and then exit. This has brought with it even stranger results. Work this out:
def some_condition
puts self.attribute # => returns blank in test, attribute value otherwise
puts "#{self.attribute}" # => returns attribute value in test!!!
exit
errors.add(:attribute, "cannot be less than 5") if self.attribute < 5
end
The above has made me incredibly tense. Do I now need tests to test my tests? really hope someone more experienced in ruby or the above tools has some logical explanation for this mess, because I'm completely lost.
It leads to this abomination:
errors.add(:attribute, "cannot be less than 5") if self.attribute < 5
# => IN TESTS self.attribute returns nil
errors.add(:attribute, "cannot be less than 5") if "#{self.attribute}".to_i < 5
# => IN TESTS self.attribute returns value! This works!?
Where do you even turn? Is it ruby, rails, factory girl, rspec?
FIX
After that massive wreck of a question, it turns out I forgot to rake db:test:prepare after a minor migration. I'm still baffled as to how it could have caused such an issue. Lesson learned. Run migrations across environments, and find a better debugger!

ifconditional in the validator looks wrong, is that just a copy-paste error? – shioyama Jan 28 at 23:51