Sha256: 40ef03704d98bee734db0742d2d4aa07b2d418f95c4758e9e74afb024c585dc8

Contents?: true

Size: 659 Bytes

Versions: 3

Compression:

Stored size: 659 Bytes

Contents

require 'bundler/setup'
require 'awesome_print'
Bundler.setup

require 'coveralls'
Coveralls.wear!

$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
require 'perf_spec'

RSpec.configure do |config|
  config.filter_run :focus
  config.run_all_when_everything_filtered = true

  config.default_formatter = 'doc' if config.files_to_run.one?

  config.profile_examples = 10
  config.order = :random

  Kernel.srand config.seed

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

  config.mock_with :rspec do |mocks|
    mocks.syntax = :expect
    mocks.verify_partial_doubles = true
  end
end
require 'guard/rubocop'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
perf_spec-1.0.0 spec/spec_helper.rb
perf_spec-0.1.1 spec/spec_helper.rb
perf_spec-0.1.0 spec/spec_helper.rb