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

set_subscription_spec.rb « merge_requests « mutations « graphql « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: daf1f529847effea3be50d1afae855621c806011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Setting subscribed status of a merge request', feature_category: :code_review do
  include GraphqlHelpers

  it_behaves_like 'a subscribable resource api' do
    let_it_be(:resource) { create(:merge_request) }
    let(:mutation_name) { :merge_request_set_subscription }
  end
end