summaryrefslogtreecommitdiff
path: root/spec/graphql/types/tree/blob_type_spec.rb
blob: fa29bb5fff79b171dda9db97c04c42ad90c9cbea (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

describe Types::Tree::BlobType do
  it { expect(described_class.graphql_name).to eq('Blob') }

  it { expect(described_class).to have_graphql_fields(:id, :name, :type, :path, :flat_path) }
end