Sha256: e0ce6fb4d85d0f098d7bcdea30aa9784ce74c28022033e22171f9d490dd65707
Contents?: true
Size: 760 Bytes
Versions: 6
Compression:
Stored size: 760 Bytes
Contents
require 'dry/validation/predicates' RSpec.describe Dry::Validation::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
6 entries across 6 versions & 1 rubygems