Sha256: b5e2326281111ee71efc45b73414069457d66a0514637e9aa77c8753f3f5fd12
Contents?: true
Size: 746 Bytes
Versions: 3
Compression:
Stored size: 746 Bytes
Contents
# frozen_string_literal: true require 'dry/logic/predicates' RSpec.describe Dry::Logic::Predicates do describe '#max_bytesize?' do let(:predicate_name) { :max_bytesize? } context 'when value size is less than n' do let(:arguments_list) do [ [5, 'こa'] ] end it_behaves_like 'a passing predicate' end context 'when value size is equal to n' do let(:arguments_list) do [ [5, 'こab'] ] end it_behaves_like 'a passing predicate' end context 'with value size is greater than n' do let(:arguments_list) do [ [5, 'こabc'] ] end it_behaves_like 'a failing predicate' end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
dry-logic-1.0.5 | spec/unit/predicates/max_bytesize_spec.rb |
dry-logic-1.0.4 | spec/unit/predicates/max_bytesize_spec.rb |
dry-logic-1.0.3 | spec/unit/predicates/max_bytesize_spec.rb |