Sha256: 226e87f7e422f76635929eff9e3e2d4745b38329259362d47f7f71be5af8e82c

Contents?: true

Size: 509 Bytes

Versions: 6

Compression:

Stored size: 509 Bytes

Contents

require "byebug"

SPEC_ROOT = Pathname(__dir__)
TEST_APP_NAME = "test_app".freeze

Dir[SPEC_ROOT.join("support/*.rb").to_s].each { |f| require f }

RSpec.configure do |config|
  config.disable_monkey_patching!

  config.example_status_persistence_file_path = "spec/examples.txt"

  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
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
dry-web-roda-0.7.2 spec/spec_helper.rb
dry-web-roda-0.7.1 spec/spec_helper.rb
dry-web-roda-0.7.0 spec/spec_helper.rb
dry-web-roda-0.6.3 spec/spec_helper.rb
dry-web-roda-0.6.2 spec/spec_helper.rb
dry-web-roda-0.6.1 spec/spec_helper.rb