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

set_assignees_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: 77ba511b7152b6b95f25a1063a945ec91544bb61 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Mutations::Issues::SetAssignees do
  it_behaves_like 'an assignable resource' do
    let_it_be(:resource, reload: true) { create(:issue) }
  end
end