summaryrefslogtreecommitdiff
path: root/spec/graphql/types/mutation_type_spec.rb
blob: c1a5c93c85b95f1e33a39dfff6bac32027253e0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Types::MutationType do
  it 'is expected to have the deprecated MergeRequestSetWip' do
    field = get_field('MergeRequestSetWip')

    expect(field).to be_present
    expect(field.deprecation_reason).to be_present
    expect(field.resolver).to eq(Mutations::MergeRequests::SetWip)
  end

  it 'is expected to have the MergeRequestSetDraft' do
    expect(described_class).to have_graphql_mutation(Mutations::MergeRequests::SetDraft)
  end

  def get_field(name)
    described_class.fields[GraphqlHelpers.fieldnamerize(name)]
  end
end