Sha256: 08fc8b7de6b00879a35f7b72f6d8d1081304c2e1003758ab241816fba557b836
Contents?: true
Size: 542 Bytes
Versions: 9
Compression:
Stored size: 542 Bytes
Contents
require 'dry/logic/predicates' RSpec.describe Dry::Logic::Predicates, '#is?' do let(:predicate_name) { :is? } let(:one) { Object.new } let(:two) { Object.new } context 'when value is equal to the arg' do let(:arguments_list) do [[one, one], [:one, :one]] end it_behaves_like 'a passing predicate' end context 'with value is not equal to the arg' do let(:arguments_list) do # Strings are not equal. Yet [[one, two], ['one', 'one']] end it_behaves_like 'a failing predicate' end end
Version data entries
9 entries across 9 versions & 1 rubygems