debian-mirror-gitlab/spec/graphql/types/tree/submodule_type_spec.rb
2019-12-26 22:10:19 +05:30

10 lines
284 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe Types::Tree::SubmoduleType do
it { expect(described_class.graphql_name).to eq('Submodule') }
it { expect(described_class).to have_graphql_fields(:id, :sha, :name, :type, :path, :flat_path, :web_url, :tree_url) }
end