Sha256: 088830964c864f6886e1c8fc2eb1320d13fe03b57315265b39a6e7f759fa7ec1

Contents?: true

Size: 1.19 KB

Versions: 5

Compression:

Stored size: 1.19 KB

Contents

require 'reek/spec'
require 'reek/source/ast_node_class_map'
require 'reek/configuration/app_configuration'

require 'factory_girl'

begin
  require 'pry-byebug'
rescue LoadError # rubocop:disable Lint/HandleExceptions
end

FactoryGirl.find_definitions

SAMPLES_DIR = 'spec/samples'

# Simple helpers for our specs.
module Helpers
  def with_test_config(config)
    if config.is_a? String
      Reek::Configuration::AppConfiguration.load_from_file(config)
    elsif config.is_a? Hash
      Reek::Configuration::AppConfiguration.class_eval do
        @configuration = config
      end
    else
      raise "Unknown config given in `with_test_config`: #{config.inspect}"
    end
    yield if block_given?
    Reek::Configuration::AppConfiguration.reset
  end

  # :reek:UncommunicativeMethodName
  def s(type, *children)
    @klass_map ||= Reek::Source::AstNodeClassMap.new
    @klass_map.klass_for(type).new(type, children)
  end

  def ast(*args)
    s(*args)
  end
end

# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
RSpec.configure do |config|
  config.filter_run :focus
  config.run_all_when_everything_filtered = true
  config.include FactoryGirl::Syntax::Methods
  config.include Helpers
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
reek-2.0.4 spec/spec_helper.rb
reek-2.0.3 spec/spec_helper.rb
reek-2.0.2 spec/spec_helper.rb
reek-2.0.1 spec/spec_helper.rb
reek-2.0.0 spec/spec_helper.rb