This is an additional note to the question "Factory Girl - what's the purpose?"

I'm not sure whether my question is counted as a repetitive one, but I'm simply still not very clear after reading that post, since I think my doubt is still different.

Alright, so now that we can always use User.create() in before(:each) block in a Rspec test, why do we still bother using Factory Girl then?

This whole confuse occurred to me when I'm reading Michael Hartl's "Rails 3 tutorial", when he suddenly jumped into Factory Girl but used User.create() to build a User instance all the way through before that.

I wish someone can clarify this point for me, thx a lot!

link|improve this question

80% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You are correct but gems like factory girl and fabrication allow for significantly less code duplication across clases and within different tests when you need to test large sets of data that require different attribute values due to uniqueness requirements. It mixes in methods to easily "manufacture" many different objects for these types of tests.

link|improve this answer
2  
So the power of Factory Girls only kicks in when we need to build a large no. of instances and/or instances will be used in different test examples? Then as long as we need to build 1 or 2 instances only, using factory doesn't make much of a difference right? – adam_0628 Oct 3 '11 at 4:54
@adam_0628, I agree with you conclusion. Also, maybe see the linked question for more explanation? stackoverflow.com/questions/5183975/… – ShaChris23 Oct 3 '11 at 15:39
@ShaChris23, thanks for your comment. For the record, your link is exactly my "Factory Girl -- what's the purpose" one in my post. Haha thanks anyway!:) – adam_0628 Oct 6 '11 at 3:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.