したがって、次のようなモデル仕様があります。
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
私の質問は、これをどのように乾燥させるのですか? 共有コンテキストを確認しましたが、モデルにアクセスできません。ヘルパー メソッドを作成し、オブジェクトの配列/ハッシュを返すこともできますが、これをエレガントな方法で行うには何かを組み込む必要があるようです。