mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Add RSpec be_within
matcher spec
This commit is contained in:
parent
1f7ac79c78
commit
e17435f6e8
1 changed files with 25 additions and 0 deletions
25
spec/rspec/expectations/be_within_matcher_spec.cr
Normal file
25
spec/rspec/expectations/be_within_matcher_spec.cr
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
require "../../spec_helper"
|
||||||
|
|
||||||
|
# Examples taken from:
|
||||||
|
# https://relishapp.com/rspec/rspec-expectations/v/3-8/docs/built-in-matchers/be-within-matcher
|
||||||
|
# and modified to fit Spectator and Crystal.
|
||||||
|
Spectator.describe "`be_within` matcher" do
|
||||||
|
context "basic usage" do
|
||||||
|
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
|
||||||
|
# TODO: Add support for expected failures.
|
||||||
|
xit { is_expected.not_to be_within(0.5).of(28) }
|
||||||
|
xit { is_expected.not_to be_within(0.5).of(27) }
|
||||||
|
xit { is_expected.to be_within(0.5).of(28.1) }
|
||||||
|
xit { is_expected.to be_within(0.5).of(26.9) }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue