所以我有一些这样的模型规格:
describe 'something' do
it 'another thing' do
a_model = FactoryGirl.create(:a_model)
another = FactoryGirl.create(:another)
#some code using a_model and another
end
end
然后,我有另一个模型规格:
describe 'something else' do
it 'another test' do
a_model = FactoryGirl.create(:a_model)
another = FactoryGirl.create(:another)
#different code using a_model and another
end
end
我的问题是我怎么把它弄干?我查看了共享上下文,但后来我无法访问我的模型。我可以创建一个辅助方法并返回一个对象数组/散列,但似乎应该有一些内置的东西以一种优雅的方式来做到这一点。