Sha256: 292a772057951ff532c816120a16d40a1101f85f0e978b0a5e4d50565648257d

Contents?: true

Size: 653 Bytes

Versions: 7

Compression:

Stored size: 653 Bytes

Contents

require "bundler/setup"

require "wildcard_finders"

require "capybara/rspec"
require "rspec/parameterized"

require "test_app"

Capybara.configure do |config|
  config.app = Sinatra::Application
end

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

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

  config.include Capybara::DSL
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
wildcard_finders-0.2.1 spec/spec_helper.rb
wildcard_finders-0.2.0 spec/spec_helper.rb
wildcard_finders-0.1.1 spec/spec_helper.rb
wildcard_finders-0.1.0 spec/spec_helper.rb
wildcard_finders-0.0.4 spec/spec_helper.rb
wildcard_finders-0.0.3 spec/spec_helper.rb
wildcard_finders-0.0.2 spec/spec_helper.rb