Sha256: fa95cba8d623eac457bf95303fed19437f5931b049c0b09cb5a548c2920464b8

Contents?: true

Size: 818 Bytes

Versions: 14

Compression:

Stored size: 818 Bytes

Contents

ENV['RAILS_ENV'] ||= 'test'
require File.expand_path('dummy/config/environment', __dir__) if ENV['BUNDLE_GEMFILE'] =~ /rails/
require 'rspec'
require 'pry'
require 'webvalve'

Dir[File.join(__dir__, 'support/**/*.rb')].each { |f| require f }

RSpec.configure do |config|
  config.expect_with :rspec do |expectations|
    expectations.include_chain_clauses_in_custom_matcher_descriptions = true
  end

  config.mock_with :rspec do |mocks|
    mocks.verify_partial_doubles = true
  end

  config.filter_run :focus
  config.run_all_when_everything_filtered = true
  config.example_status_persistence_file_path = "spec/examples.txt"

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

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

  config.profile_examples = 10

  config.include Helpers
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
webvalve-1.1.0 spec/spec_helper.rb
webvalve-1.0.2 spec/spec_helper.rb
webvalve-1.0.1 spec/spec_helper.rb
webvalve-1.0.0 spec/spec_helper.rb
webvalve-0.12.0 spec/spec_helper.rb
webvalve-0.11.0 spec/spec_helper.rb
webvalve-0.10.0 spec/spec_helper.rb
webvalve-0.9.10 spec/spec_helper.rb
webvalve-0.9.9 spec/spec_helper.rb
webvalve-0.9.8 spec/spec_helper.rb
webvalve-0.9.7 spec/spec_helper.rb
webvalve-0.9.6 spec/spec_helper.rb
webvalve-0.9.5 spec/spec_helper.rb
webvalve-0.9.4 spec/spec_helper.rb