エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
$count = 0 describe 'let!' do invocation_order = [] before(:each) { invocation_order << :before1 ... $count = 0 describe 'let!' do invocation_order = [] before(:each) { invocation_order << :before1 } let!(:count) do invocation_order << :let! $count += 1 end before(:each) { invocation_order << :before2 } it 'calls the helper method in a before hook in described order' do invocation_order << :example invocation_order.should == [:before1, :let!, :before2, :example] count.should == 1 end end % rspec