1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
# frozen_string_literal: true
require "dry/logic/predicates"
RSpec.describe Dry::Logic::Predicates do
describe "#lteq?" do
let(:predicate_name) { :lteq? }
context "when value is less than n" do
let(:arguments_list) do
[
[13, 12],
[13.37, 13.36]
]
end
it_behaves_like "a passing predicate"
end
context "when value is equal to n" do
let(:arguments_list) do
[
[13, 13],
[13.37, 13.37]
]
end
it_behaves_like "a passing predicate"
end
context "with value is greater than n" do
let(:arguments_list) do
[
[13, 14],
[13.37, 13.38]
]
end
it_behaves_like "a failing predicate"
end
end
end
|