Sha256: 17bcdf04d414a9bafe83ef0275c04e354234e1da50cea63d30f594578126bd69
Contents?: true
Size: 441 Bytes
Versions: 9
Compression:
Stored size: 441 Bytes
Contents
require 'dry/logic/predicates' RSpec.describe Dry::Logic::Predicates, '#not_eql?' do let(:predicate_name) { :not_eql? } context 'when value is equal to the arg' do let(:arguments_list) do [['Foo', 'Foo']] end it_behaves_like 'a failing predicate' end context 'with value is not equal to the arg' do let(:arguments_list) do [['Bar', 'Foo']] end it_behaves_like 'a passing predicate' end end
Version data entries
9 entries across 9 versions & 1 rubygems