Sha256: fec6760eeb5f4124e646237de02363877fb440e76404ae5eb69f6133fc28e00d

Contents?: true

Size: 757 Bytes

Versions: 5

Compression:

Stored size: 757 Bytes

Contents

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

  let(:left) { Rule::Value.new(:age, Predicates[:int?]) }
  let(:right) { Rule::Value.new(:age, Predicates[: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(:age, Predicates[: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(:age, Predicates[: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-validation-0.4.1 spec/unit/rule/conjunction_spec.rb
dry-validation-0.4.0 spec/unit/rule/conjunction_spec.rb
dry-validation-0.3.1 spec/unit/rule/conjunction_spec.rb
dry-validation-0.3.0 spec/unit/rule/conjunction_spec.rb
dry-validation-0.2.0 spec/unit/rule/conjunction_spec.rb