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

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

require 'spec_helper'

describe GitlabSchema.types['JiraImport'] do
  it { expect(described_class.graphql_name).to eq('JiraImport') }

  it 'has the expected fields' do
    expect(described_class).to have_graphql_fields(:jira_project_key, :scheduled_at, :scheduled_by)
  end
end