它是我的 factorygirl 代码
FactoryGirl.define do
factory :account do
sequence :name do |n|
"Test Account#{n}"
end
end
end
这是我运行 factorygirl 代码的方法
def create_accounts n=2
n.times do
FactoryGirl.create(:account, subscription_ids: @sub.id.to_s)
end
end
我的问题是,第一次我的 FactoryGirl 输出是Test Account1, Test Account2
,当我第二次执行时,它创建输出为Test Account3, Test Account4
. 但是我需要Test Account1, Test Account2
多次运行。我该怎么做。
感谢您的建议