Sha256: f1a7e1b0e29375bc23c47d1986406e20b885eed8e268a4e933d212bf27c77334

Contents?: true

Size: 893 Bytes

Versions: 1

Compression:

Stored size: 893 Bytes

Contents

require "depryve"
require "test_cases"

RSpec.configure do |config|
  # Add `focus: true` hash parameter to a describe/context/it block
  # to only run the specs in that block
  config.filter_run_when_matching :focus

  # Fuubar
  config.add_formatter "Fuubar"
  config.fuubar_progress_bar_options = { format: "  %c/%C |%b>%i|%e " }

  # More verbose output if only running one spec
  config.default_formatter = "doc" if config.files_to_run.one?

  # Print the 10 slowest examples and example groups at the
  # end of the spec run, to help surface which specs are running
  # particularly slow.
  config.profile_examples = 10

  # Run specs in random order to surface order dependencies. If you find an
  # order dependency and want to debug it, fix the order by providing the seed,
  # which is printed after each run, e.g. --seed 1234
  config.order = :random
  Kernel.srand config.seed
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
depryve-0.2 spec/spec_helper.rb