Sha256: bfe13822b603e4124805277f81e11d89de80bf190047fcabf459307e374bef96
Contents?: true
Size: 643 Bytes
Versions: 4
Compression:
Stored size: 643 Bytes
Contents
require "simplecov" require "simplecov-json" SimpleCov.start "rails" do add_group "Services", "app/services" end SimpleCov.formatter = SimpleCov::Formatter::JSONFormatter require "webmock/rspec" # http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration RSpec.configure do |config| config.expect_with :rspec do |expectations| expectations.syntax = :expect end config.mock_with :rspec do |mocks| mocks.syntax = :expect mocks.verify_partial_doubles = true end config.example_status_persistence_file_path = "tmp/rspec_examples.txt" config.order = :random end WebMock.disable_net_connect!(allow_localhost: true)
Version data entries
4 entries across 4 versions & 1 rubygems