私は次の仕様を持っています:
it 'should find and associate thumbnail and video for article with an episode with the first alpha-numerically matching files it finds' do
@article = FactoryGirl.create(:pending_assets_article, id: 1)
@episode1 = FactoryGirl.create(:episode, topic_id: @topic.id, article_id: @article.id, position: 1)
@article.video.should be_nil
@article.thumbnail.image.should be_blank
@article.state.should == 'pending assets'
run_rake_task
Delayed::Job.count.should == 2
...
end
独特なのは、この仕様はUbuntuでは問題なく合格しますが、Mac OSXLionでは失敗して次のように表示されexpected 2, got 0
ます。
何が得られますか?
より多くのコンテキストを提供するために、より多くの周囲のコードを追加できれば幸いです。