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