Sha256: 8a24ea16af77d0ed00ff05a114e218bb3aceaebf9320b231cebda415b16f13d0

Contents?: true

Size: 858 Bytes

Versions: 4

Compression:

Stored size: 858 Bytes

Contents

# frozen_string_literal: true

RSpec.describe Operations::Attr do
  subject(:operation) { Operations::Attr.new(Rule::Predicate.build(str?), name: :name) }

  include_context 'predicates'

  let(:model) { Struct.new(:name) }

  describe '#call' do
    it 'applies predicate to the value' do
      expect(operation.(model.new('Jane'))).to be_success
      expect(operation.(model.new(nil))).to be_failure
    end
  end

  describe '#and' do
    let(:other) { Operations::Attr.new(Rule::Predicate.build(min_size?).curry(3), name: :name) }

    it 'returns and where value is passed to the right' do
      present_and_string = operation.and(other)

      expect(present_and_string.(model.new('Jane'))).to be_success

      expect(present_and_string.(model.new('Ja'))).to be_failure
      expect(present_and_string.(model.new(1))).to be_failure
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dry-logic-1.0.5 spec/unit/operations/attr_spec.rb
dry-logic-1.0.4 spec/unit/operations/attr_spec.rb
dry-logic-1.0.3 spec/unit/operations/attr_spec.rb
dry-logic-1.0.2 spec/unit/operations/attr_spec.rb