Augmented Usamimi

it { is_expected.to be_blog.written_by(izumin5210) }

Entries from 2015-01-05 to 1 day

【RSpec】yieldを伴うメソッド(ブロック引数 etc.)のテスト

yield matchersなるものがあるらしい. let(:array) { [1, 2, 3] } it { expect { |b| array.each(&b) }.to yield_control } it { expect { |b| array.each(&b) }.to yield_control.exactly(3) } it { expect { |b| array.each(&b) }.to yield_successive_ar…