Sha256: b4c230df91193a0383957f013b5815880b3735180ad503771a0a2973834fb3e2
Contents?: true
Size: 1.49 KB
Versions: 129
Compression:
Stored size: 1.49 KB
Contents
Feature: be_within matcher Normal equality expectations do not work well for floating point values. Consider this irb session: > radius = 3 => 3 > area_of_circle = radius * radius * Math::PI => 28.2743338823081 > area_of_circle == 28.2743338823081 => false Instead, you should use the be_within matcher to check that the value is within a delta of your expected value: area_of_circle.should be_within(0.1).of(28.3) Note that the difference between the actual and expected values must be smaller than your delta; if it is equal, the matcher will fail. Scenario: basic usage Given a file named "be_within_matcher_spec.rb" with: """ describe 27.5 do it { should be_within(0.5).of(27.9) } it { should be_within(0.5).of(27.1) } it { should_not be_within(0.5).of(28) } it { should_not be_within(0.5).of(27) } # deliberate failures it { should_not be_within(0.5).of(27.9) } it { should_not be_within(0.5).of(27.1) } it { should be_within(0.5).of(28) } it { should be_within(0.5).of(27) } end """ When I run `rspec be_within_matcher_spec.rb` Then the output should contain all of these: | 8 examples, 4 failures | | expected 27.5 not to be within 0.5 of 27.9 | | expected 27.5 not to be within 0.5 of 27.1 | | expected 27.5 to be within 0.5 of 28 | | expected 27.5 to be within 0.5 of 27 |
Version data entries
129 entries across 79 versions & 7 rubygems