Sha256: 9a4ab0221173f3815ec47f63a61e649b63128b22a39950ad1b1c0f9b2bfbb4ec

Contents?: true

Size: 906 Bytes

Versions: 8

Compression:

Stored size: 906 Bytes

Contents

require 'rspec'
require 'rspec/its'
require 'rspec/collection_matchers'
require 'webmock/rspec'

if ENV['CI'] || (defined?(:RUBY_ENGINE) && RUBY_ENGINE != 'rbx')
  require 'coveralls'
  Coveralls.wear! do
    add_filter 'spec'
  end
end

require 'bundler'
Bundler.require

require 'acfs'

Dir[File.expand_path('spec/support/**/*.rb')].each {|f| require f}

RSpec.configure do |config|
  # ## Mock Framework
  #
  # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
  #
  # config.mock_with :mocha
  # config.mock_with :flexmock
  # config.mock_with :rr

  # 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.before :each do
    Acfs.runner.clear
    Acfs::Stub.clear
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
acfs-0.33.1.1.b285 spec/spec_helper.rb
acfs-0.33.1.1.b281 spec/spec_helper.rb
acfs-0.33.1 spec/spec_helper.rb
acfs-0.33.0.1.b278 spec/spec_helper.rb
acfs-0.33.0 spec/spec_helper.rb
acfs-0.32.1.1.b277 spec/spec_helper.rb
acfs-0.32.1.1.b276 spec/spec_helper.rb
acfs-0.32.1.1.b275 spec/spec_helper.rb