File: key_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 (31 lines) | stat: -rw-r--r-- 621 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
# frozen_string_literal: true

require "dry/logic/predicates"

RSpec.describe Dry::Logic::Predicates do
  describe "#key?" do
    let(:predicate_name) { :key? }

    context "when key is present in value" do
      let(:arguments_list) do
        [
          [:name, {name: "John"}],
          [:age, {age: 18}]
        ]
      end

      it_behaves_like "a passing predicate"
    end

    context "with key is not present in value" do
      let(:arguments_list) do
        [
          [:name, {age: 18}],
          [:age, {name: "Jill"}]
        ]
      end

      it_behaves_like "a failing predicate"
    end
  end
end