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

organization_state_counts_type_spec.rb « customer_relations « types « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2c8dacb1a52146e37f893c574fda33902466c78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['OrganizationStateCounts'] do
  include GraphqlHelpers

  let(:fields) do
    %w[
      all
      active
      inactive
    ]
  end

  let(:object) do
    {
      'inactive' => 3,
      'active' => 4
    }
  end

  it { expect(described_class.graphql_name).to eq('OrganizationStateCounts') }
  it { expect(described_class).to have_graphql_fields(fields) }

  describe '#all' do
    it 'returns the sum of all counts' do
      expect(resolve_field(:all, object)).to eq(7)
    end
  end
end