Sha256: f54087ee6e4210a17adecebb93cab1f80fdcd8fca639aff70b84e974ce81dabd
Contents?: true
Size: 1.31 KB
Versions: 10
Compression:
Stored size: 1.31 KB
Contents
# frozen_string_literal: true require 'spec_helper' module Synvert::Core RSpec.describe Rewriter::IfExistCondition do let(:source) { <<~EOS } RSpec.configure do |config| config.include EmailSpec::Helpers config.include EmailSpec::Methods end EOS let(:node) { Parser::CurrentRuby.parse(source) } let(:instance) { double(current_node: node, current_parser: :parser) } describe '#process' do it 'call block if match anything' do run = false condition = Rewriter::IfExistCondition.new instance, type: 'send', message: 'include', arguments: ['EmailSpec::Helpers'] 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::IfExistCondition.new instance, type: 'send', message: 'include', arguments: ['FactoryGirl::SyntaxMethods'] do run = true end condition.process expect(run).to be_falsey end end end end
Version data entries
10 entries across 10 versions & 1 rubygems