I am learning django test and i found django factory boy library very helpfull for writing testcase but one thing i am not getting..
forexample my one of Factory name is BlogFactory
so i notice, most of the people use this like this: BlogFactory.create()
and some people use it like this.. BlogFactory.create_batch()
I am not getting difference between it..
What is different between create
and create_batch
?