summaryrefslogtreecommitdiff
path: root/spec/graphql
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2019-06-10 09:05:16 +0100
committerPhil Hughes <me@iamphill.com>2019-06-10 09:05:44 +0100
commit522c01972c7f46dbe8a2cd7569784fa255997c91 (patch)
treeab726ad68410c1c69d12bf8dc2aa527f2a05bd20 /spec/graphql
parent25420de654b5581ccf6254be769a5e031446eced (diff)
downloadgitlab-ce-522c01972c7f46dbe8a2cd7569784fa255997c91.tar.gz
Add LFS blob ID to GraphQL blob type
Diffstat (limited to 'spec/graphql')
-rw-r--r--spec/graphql/types/tree/blob_type_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/graphql/types/tree/blob_type_spec.rb b/spec/graphql/types/tree/blob_type_spec.rb
index b12e214ca84..22c11aff90a 100644
--- a/spec/graphql/types/tree/blob_type_spec.rb
+++ b/spec/graphql/types/tree/blob_type_spec.rb
@@ -5,5 +5,5 @@ 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, :web_url) }
+ it { expect(described_class).to have_graphql_fields(:id, :name, :type, :path, :flat_path, :web_url, :lfs_oid) }
end