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

set_subscription_spec.rb « issues « mutations « graphql « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c8e5b1d15dd736d4194fb4205a86ab6ed381b6e (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 an issue', feature_category: :team_planning do
  include GraphqlHelpers

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