Sha256: 04260b14b3c36d522fba6368787c03d5dd66aab061b06e310b9f493b2ab3354b
Contents?: true
Size: 549 Bytes
Versions: 1
Compression:
Stored size: 549 Bytes
Contents
require 'rubocop' require 'rubocop/rspec/support' if ENV['CI'] require 'codeclimate-test-reporter' CodeClimate::TestReporter.start end RSpec.configure do |config| config.order = :random config.expect_with :rspec do |expectations| expectations.syntax = :expect # Disable `should` end config.mock_with :rspec do |mocks| mocks.syntax = :expect # Disable `should_receive` and `stub` end end $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'rubocop-rspec'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubocop-rspec-1.5.2 | spec/spec_helper.rb |