Sha256: 99e12af8121cd36bbdf685ed358cc489829d54de88d60080e8bd2dfa3e3a3e59
Contents?: true
Size: 1.72 KB
Versions: 2
Compression:
Stored size: 1.72 KB
Contents
# frozen_string_literal: true require 'bundler/setup' Bundler.setup require 'simplecov' SimpleCov.start require 'briard' require 'maremma' require 'rspec' require 'rack/test' require 'webmock/rspec' require 'rspec/xsd' require 'nokogiri' require 'vcr' RSpec.configure do |config| config.order = :random config.include RSpec::XSD config.include WebMock::API config.include Rack::Test::Methods config.expect_with :rspec do |c| c.syntax = :expect end config.before do ARGV.replace [] end config.before(:suite) do ::NameDetector = GenderDetector.new end end def fixture_path "#{File.expand_path('fixtures', __dir__)}/" end # This code was adapted from Thor, available under MIT-LICENSE # Copyright (c) 2008 Yehuda Katz, Eric Hodel, et al. def capture(stream) begin stream = stream.to_s eval "$#{stream} = StringIO.new" yield result = eval("$#{stream}").string ensure eval("$#{stream} = #{stream.upcase}") end result end def capture_stdout original_stdout = $stdout $stdout = fake = StringIO.new begin yield ensure $stdout = original_stdout end fake.string end def capture_stderr original_stderr = $stderr $stderr = fake = StringIO.new begin yield ensure $stderr = original_stderr end fake.string end # This code was adapted from Ruby on Rails, available under MIT-LICENSE # Copyright (c) 2004-2013 David Heinemeier Hansson def silence_warnings old_verbose = $VERBOSE $VERBOSE = nil yield ensure $VERBOSE = old_verbose end alias silence capture VCR.configure do |c| c.cassette_library_dir = 'spec/fixtures/vcr_cassettes' c.hook_into :webmock c.ignore_localhost = true c.ignore_hosts 'codeclimate.com' c.configure_rspec_metadata! end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
briard-2.6.1 | spec/spec_helper.rb |
briard-2.6.0 | spec/spec_helper.rb |