File: attr_spec.rb

package info (click to toggle)
ruby-dry-logic 1.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 728 kB
  • sloc: ruby: 4,929; makefile: 6
file content (33 lines) | stat: -rw-r--r-- 940 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

RSpec.describe Dry::Logic::Operations::Attr do
  subject(:operation) do
    Dry::Logic::Operations::Attr.new(Dry::Logic::Rule::Predicate.build(str?), name: :name)
  end

  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) do
      Dry::Logic::Operations::Attr.new(Dry::Logic::Rule::Predicate.build(min_size?).curry(3), name: :name)
    end

    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