Sha256: 9062689dc155ec3ace63385ef615530c7df504922c75256ea1b0aefad37687bc
Contents?: true
Size: 608 Bytes
Versions: 5
Compression:
Stored size: 608 Bytes
Contents
require 'dry/validation/predicates' RSpec.describe Dry::Validation::Predicates do describe '#decimal?' do let(:predicate_name) { :decimal? } context 'when value is a date' do let(:arguments_list) do [[1.2.to_d]] end it_behaves_like 'a passing predicate' end context 'with value is not an integer' do let(:arguments_list) do [ [''], [[]], [{}], [nil], [:symbol], [String], [1], [1.0] ] end it_behaves_like 'a failing predicate' end end end
Version data entries
5 entries across 5 versions & 1 rubygems