Sha256: 531cd3f73e7ffa7b29dcdb2405089c61ebb921cf5ea118f4d8a7d7f3f1bb103e

Contents?: true

Size: 713 Bytes

Versions: 5

Compression:

Stored size: 713 Bytes

Contents

RSpec.describe Rule::Composite::Conjunction do
  include_context 'predicates'

  subject(:rule) { Rule::Composite::Conjunction.new(left, right) }

  let(:left) { Rule::Value.new(int?) }
  let(:right) { Rule::Value.new(gt?.curry(18)) }

  describe '#call' do
    it 'calls left and right' do
      expect(rule.(18)).to be_failure
    end
  end

  describe '#and' do
    let(:other) { Rule::Value.new(lt?.curry(30)) }

    it 'creates conjunction with the other' do
      expect(rule.and(other).(31)).to be_failure
    end
  end

  describe '#or' do
    let(:other) { Rule::Value.new(lt?.curry(14)) }

    it 'creates disjunction with the other' do
      expect(rule.or(other).(13)).to be_success
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
dry-logic-0.3.0 spec/unit/rule/conjunction_spec.rb
dry-logic-0.2.3 spec/unit/rule/conjunction_spec.rb
dry-logic-0.2.2 spec/unit/rule/conjunction_spec.rb
dry-logic-0.2.1 spec/unit/rule/conjunction_spec.rb
dry-logic-0.2.0 spec/unit/rule/conjunction_spec.rb