I just received a patch. It fixes one bug that was a terrible pain in the ass for quite some time, so I applied it immediately. I just had to adapt some tests. Here’s what’s new.

< me.student.should == true
< me.degree.should be_nil
---
> me.student.should == false
> me.degree.should == Factory.build :degree, :title => 'Diplom-Informatiker'
> me.degree.should be_equivalent_to Factory.build :degree, :title => 'Master of Science'

Leave a Reply