File: builder_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 (25 lines) | stat: -rw-r--r-- 601 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
# frozen_string_literal: true

RSpec.describe Dry::Logic::Builder do
  describe "undefined methods" do
    it "raises NameError" do
      expect do
        described_class.call { does_not_exist }
      end.to raise_error(NameError, /does_not_exist/)
    end
  end

  describe "leakage" do
    context "given a module extending ::Builder" do
      subject do
        Module.new do
          extend Dry::Logic::Builder
        end
      end

      it { is_expected.not_to respond_to(:int?) }
      it { is_expected.to respond_to(:call) }
      it { is_expected.to respond_to(:build) }
    end
  end
end