Sha256: f93c5fb31bd315a9835eb8d50b246bd4f679b7ddf52fb96e3cbcf950609be458
Contents?: true
Size: 750 Bytes
Versions: 17
Compression:
Stored size: 750 Bytes
Contents
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
Version data entries
17 entries across 17 versions & 1 rubygems