Sha256: 3c4a1bcc6bc2228720b6b8f81cb4fedb9d06b63ff25cc902b4f8e97a518eb00f

Contents?: true

Size: 1.04 KB

Versions: 2

Compression:

Stored size: 1.04 KB

Contents

# frozen_string_literal: true

require 'spec_helper'

module Synvert::Core
  describe Rewriter::UnlessExistCondition do
    let(:source) {
      """
      RSpec.configure do |config|
        config.include EmailSpec::Helpers
        config.include EmailSpec::Methods
      end
      """
    }
    let(:node) { Parser::CurrentRuby.parse(source) }
    let(:instance) { double(:current_node => node) }

    describe '#process' do
      it 'call block if match anything' do
        run = false
        condition = Rewriter::UnlessExistCondition.new instance, type: 'send', message: 'include', arguments: ['FactoryGirl::Syntax::Methods'] do
          run = true
        end
        condition.process
        expect(run).to be_truthy
      end

      it 'not call block if not match anything' do
        run = false
        condition = Rewriter::UnlessExistCondition.new instance, type: 'send', message: 'include', arguments: ['EmailSpec::Helpers'] do
          run = true
        end
        condition.process
        expect(run).to be_falsey
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
synvert-core-0.16.1 spec/synvert/core/rewriter/condition/unless_exist_condition_spec.rb
synvert-core-0.16.0 spec/synvert/core/rewriter/condition/unless_exist_condition_spec.rb