Sha256: 176a4342da6e1e5e018cec94cd37c33cfddba3db01eddb74662ddf800378879f

Contents?: true

Size: 1.66 KB

Versions: 4

Compression:

Stored size: 1.66 KB

Contents

RSpec.describe Result do
  include_context 'predicates'

  describe '#to_s' do
    shared_examples_for 'string representation' do
      it 'returns string representation' do
        expect(rule.(input).to_s).to eql(output)
      end
    end

    context 'with a predicate' do
      let(:rule) { Rule::Predicate.new(gt?, args: [18]) }
      let(:input) { 17 }
      let(:output) { 'gt?(18, 17)' }

      it_behaves_like 'string representation'
    end

    context 'with AND operation' do
      let(:rule) { Rule::Predicate.new(array?).and(Rule::Predicate.new(empty?)) }
      let(:input) { '' }
      let(:output) { 'array?("") AND empty?("")' }

      it_behaves_like 'string representation'
    end

    context 'with OR operation' do
      let(:rule) { Rule::Predicate.new(array?).or(Rule::Predicate.new(empty?)) }
      let(:input) { 123 }
      let(:output) { 'array?(123) OR empty?(123)' }

      it_behaves_like 'string representation'
    end

    context 'with XOR operation' do
      let(:rule) { Rule::Predicate.new(array?).xor(Rule::Predicate.new(empty?)) }
      let(:input) { [] }
      let(:output) { 'array?([]) XOR empty?([])' }

      it_behaves_like 'string representation'
    end

    context 'with THEN operation' do
      let(:rule) { Rule::Predicate.new(array?).then(Rule::Predicate.new(empty?)) }
      let(:input) { [1, 2, 3] }
      let(:output) { 'empty?([1, 2, 3])' }

      it_behaves_like 'string representation'
    end

    context 'with NOT operation' do
      let(:rule) { Operations::Negation.new(Rule::Predicate.new(array?)) }
      let(:input) { 'foo' }
      let(:output) { 'not(array?("foo"))' }

      it_behaves_like 'string representation'
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dry-logic-0.5.0 spec/integration/result_spec.rb
dry-logic-0.4.2 spec/integration/result_spec.rb
dry-logic-0.4.1 spec/integration/result_spec.rb
dry-logic-0.4.0 spec/integration/result_spec.rb