Sha256: 519630435819105fb12a0424c99f885bee7677f5687a4e0969700e4089658757

Contents?: true

Size: 827 Bytes

Versions: 3

Compression:

Stored size: 827 Bytes

Contents

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

3 entries across 3 versions & 1 rubygems

Version Path
dry-logic-1.0.0 spec/unit/operations/attr_spec.rb
dry-logic-0.6.1 spec/unit/operations/attr_spec.rb
dry-logic-0.6.0 spec/unit/operations/attr_spec.rb