Sha256: 69a907601ce75988580a3f5142d6e1f53018c5a58fde12d3575a306a16d61ea6
Contents?: true
Size: 640 Bytes
Versions: 16
Compression:
Stored size: 640 Bytes
Contents
require 'dry/logic/predicates' RSpec.describe Dry::Logic::Predicates do describe '#true?' do let(:predicate_name) { :true? } context 'when value is a date' do let(:arguments_list) do [[true]] end it_behaves_like 'a passing predicate' end context 'with value is not true' do let(:arguments_list) do [ [false], [''], [[]], [{}], [nil], [:symbol], [String], [1], [0], ['true'], ['false'] ] end it_behaves_like 'a failing predicate' end end end
Version data entries
16 entries across 16 versions & 1 rubygems