Sha256: 4ad0380df38dbf2af9f4e4b138e473ee9819cd7b2a0a521add6126ee02d3ac7a
Contents?: true
Size: 781 Bytes
Versions: 4
Compression:
Stored size: 781 Bytes
Contents
# 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
Version data entries
4 entries across 4 versions & 1 rubygems