Sha256: 95ffa40c787f41281a0cfe01aa3fb599c28a9b5e43acf24a373a8f99a8a8be70
Contents?: true
Size: 1.33 KB
Versions: 145
Compression:
Stored size: 1.33 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
145 entries across 145 versions & 1 rubygems