Sha256: 322c357b6bd45c940cd3d4003342215c16986c5786fc57874338fc4b072fea24
Contents?: true
Size: 1.68 KB
Versions: 3
Compression:
Stored size: 1.68 KB
Contents
# this is needed for guard to work, not sure why :( require "bundler" Bundler.setup if RUBY_ENGINE == 'ruby' && ENV['COVERAGE'] == 'true' require 'yaml' rubies = YAML.load(File.read(File.join(__dir__, '..', '.travis.yml')))['rvm'] latest_mri = rubies.select { |v| v =~ /\A\d+\.\d+.\d+\z/ }.max if RUBY_VERSION == latest_mri require 'simplecov' SimpleCov.start do add_filter '/spec/' end end end require 'rom-sql' require 'rom-repository' begin require 'byebug' rescue LoadError end root = Pathname(__FILE__).dirname LOGGER = Logger.new(File.open('./log/test.log', 'a')) require 'dry/core/deprecations' Dry::Core::Deprecations.set_logger!(root.join('../log/deprecations.log')) # Make inference errors quiet class ROM::SQL::Schema::Inferrer def self.on_error(*args) # shush end end # Namespace holding all objects created during specs module Test def self.remove_constants constants.each(&method(:remove_const)) end end warning_api_available = RUBY_VERSION >= '2.4.0' module SileneceWarnings def warn(str) if str['/sequel/'] || str['/rspec-core'] nil else super end end end DB_URI = if defined? JRUBY_VERSION 'jdbc:postgresql://localhost/rom_repository' else 'postgres://localhost/rom_repository' end Warning.extend(SileneceWarnings) if warning_api_available RSpec.configure do |config| config.disable_monkey_patching! config.warnings = warning_api_available config.after do Test.remove_constants end Dir[root.join('support/*.rb').to_s].each do |f| require f end Dir[root.join('shared/*.rb').to_s].each do |f| require f end config.include(MapperRegistry) end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rom-repository-1.4.0 | spec/spec_helper.rb |
rom-repository-1.3.3 | spec/spec_helper.rb |
rom-repository-1.3.2 | spec/spec_helper.rb |