Sha256: 9a60058a7e788fc4df7ae943ef97380788400da24cc057e0cb91570e169c4551

Contents?: true

Size: 587 Bytes

Versions: 2

Compression:

Stored size: 587 Bytes

Contents

require 'simplecov'
require 'rspec'
require 'factory_bot'

# Start Simplecov
SimpleCov.start do
  add_filter 'spec/'
end

# Configure RSpec
RSpec.configure do |config|
  config.color = true
  config.fail_fast = false

  config.order = :random
  Kernel.srand config.seed

  config.expect_with :rspec do |c|
    c.syntax = :expect
  end

  # disable monkey patching
  # see: https://relishapp.com/rspec/rspec-core/v/3-8/docs/configuration/zero-monkey-patching-mode
  config.disable_monkey_patching!

  config.before(:suite) do
    FactoryBot.find_definitions
  end
end

require 'ssh-hull'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ssh-hull-2.0 spec/spec_helper.rb
ssh-hull-1.0.0 spec/spec_helper.rb