Welcome to mirror list, hosted at ThFree Co, Russian Federation.

web_mock_enable_spec.rb « rspec « cop « rubocop « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63ffc06f1ca0fb4f4676b5532de3e9e58b01106a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

require 'rubocop_spec_helper'

require_relative '../../../../rubocop/cop/rspec/web_mock_enable'

RSpec.describe RuboCop::Cop::RSpec::WebMockEnable do
  context 'when calling WebMock.disable_net_connect!' do
    it 'registers an offence and autocorrects it' do
      expect_offense(<<~RUBY)
        WebMock.disable_net_connect!(allow_localhost: true)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use webmock_enable! instead of calling WebMock.disable_net_connect! directly.
      RUBY

      expect_correction(<<~RUBY)
        webmock_enable!
      RUBY
    end
  end
end