Sha256: f9f620b5337b57b9e7834ce40a852f3b7556023711c7bd82c360babaa5d42301
Contents?: true
Size: 1.69 KB
Versions: 1
Compression:
Stored size: 1.69 KB
Contents
require 'pathname' require_relative '../lib/reek' require_relative '../lib/reek/spec' require_relative '../lib/reek/ast/ast_node_class_map' require_relative '../lib/reek/configuration/app_configuration' require 'ostruct' Reek::CLI::Silencer.silently do require 'factory_girl' begin require 'pry-byebug' rescue LoadError # rubocop:disable Lint/HandleExceptions end end if Gem.loaded_specs['factory_girl'].version > Gem::Version.create('4.5.0') raise 'Remove the above silencer as well as this check now that ' \ '`factory_girl` gem is updated to version greater than 4.5.0!' end FactoryGirl.find_definitions SAMPLES_PATH = Pathname.new("#{__dir__}/samples").relative_path_from(Pathname.pwd) # Simple helpers for our specs. module Helpers def test_configuration_for(config) if config.is_a? Pathname configuration = Reek::Configuration::AppConfiguration.from_path(config) elsif config.is_a? Hash configuration = Reek::Configuration::AppConfiguration.from_map default_directive: config else raise "Unknown config given in `test_configuration_for`: #{config.inspect}" end configuration end # :reek:UncommunicativeMethodName def s(type, *children) @klass_map ||= Reek::AST::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 config.disable_monkey_patching! config.mock_with :rspec do |mocks| mocks.verify_partial_doubles = true end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
reek-3.3.0 | spec/spec_helper.rb |