Sha256: 87c35284e719bc1178645b2bde6c1e50b3264a41de5c7b0610954a3364cb0251

Contents?: true

Size: 769 Bytes

Versions: 19

Compression:

Stored size: 769 Bytes

Contents

require "rubygems"
require "bundler"

require "simplecov"
SimpleCov.start do
  add_filter "/spec/"
end

Bundler.require(:default, :development, :test)

require "protobuf/rspec"
require "support/helpers"

$LOAD_PATH << ::File.expand_path("../support/protobuf", __FILE__)
require "support/protobuf"
require "support/models"

RSpec.configure do |config|
  config.include Protobuf::RSpec::Helpers

  # Turn deprecation warnings into errors with full backtrace.
  config.raise_errors_for_deprecations!

  # Verifies the existance of any stubbed methods, replaces better_receive and better_stub
  # https://www.relishapp.com/rspec/rspec-mocks/v/3-1/docs/verifying-doubles/partial-doubles
  config.mock_with :rspec do |mocks|
    mocks.verify_partial_doubles = true
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
active_remote-7.1.0 spec/spec_helper.rb
active_remote-6.0.3 spec/spec_helper.rb
active_remote-6.1.2 spec/spec_helper.rb
active_remote-7.0.0 spec/spec_helper.rb
active_remote-6.1.1 spec/spec_helper.rb
active_remote-6.1.0 spec/spec_helper.rb
active_remote-6.0.2 spec/spec_helper.rb
active_remote-6.0.1 spec/spec_helper.rb
active_remote-6.0.0.beta spec/spec_helper.rb
active_remote-5.2.0 spec/spec_helper.rb
active_remote-5.2.0.beta spec/spec_helper.rb
active_remote-5.2.0.alpha spec/spec_helper.rb
active_remote-5.0.1 spec/spec_helper.rb
active_remote-5.1.1 spec/spec_helper.rb
active_remote-5.1.0 spec/spec_helper.rb
active_remote-5.0.0 spec/spec_helper.rb
active_remote-5.1.0.rc1 spec/spec_helper.rb
active_remote-5.0.0.rc1 spec/spec_helper.rb
active_remote-5.0.0.pre spec/spec_helper.rb