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

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

require 'spec_helper'

RSpec.describe Mutations::Issues::SetSubscription do
  it_behaves_like 'a subscribeable graphql resource' do
    let_it_be(:resource) { create(:issue) }
    let(:permission_name) { :update_issue }
  end
end