メインコンテンツまでスキップ

be_within マッチャー

通常の等価性の期待は、浮動小数点値にはうまく機能しません。 以下の irb セッションを考えてみてください:

> radius = 3
=> 3
> area_of_circle = radius * radius * Math::PI
=> 28.2743338823081
> area_of_circle == 28.2743338823081
=> false

代わりに、期待する値のデルタ内に値があるかどうかを確認するために be_within マッチャーを使用する必要があります:

expect(area_of_circle).to be_within(0.1).of(28.3)

実際の値と期待する値の差は、デルタよりも小さくなければならないことに注意してください。等しい場合、マッチャーは失敗します。

基本的な使用法

次の内容で "be_within_matcher_spec.rb" という名前のファイルがあるとします:

RSpec.describe 27.5 do
it { is_expected.to be_within(0.5).of(27.9) }
it { is_expected.to be_within(0.5).of(28.0) }
it { is_expected.to be_within(0.5).of(27.1) }
it { is_expected.to be_within(0.5).of(27.0) }

it { is_expected.not_to be_within(0.5).of(28.1) }
it { is_expected.not_to be_within(0.5).of(26.9) }

# deliberate failures
it { is_expected.not_to be_within(0.5).of(28) }
it { is_expected.not_to be_within(0.5).of(27) }
it { is_expected.to be_within(0.5).of(28.1) }
it { is_expected.to be_within(0.5).of(26.9) }
end

rspec be_within_matcher_spec.rb を実行すると、

以下のすべてが出力に含まれるはずです:

| 10 の例、4 つの失敗 | | 期待値 27.5 が 0.5 の範囲内にないことを期待 | | 期待値 27.5 が 0.5 の範囲内にないことを期待 | | 期待値 27.5 が 0.5 の範囲内にあることを期待 | | 期待値 27.5 が 0.5 の範囲内にあることを期待 |