diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-06 21:08:48 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-06 21:08:48 +0000 |
commit | a89cb5cbdd832d4d9e80517973aceda6bc0a3856 (patch) | |
tree | 574475bd0901a2f8906d36a4728b8bbb95b41e1c /spec/lib/container_registry | |
parent | 0d6fa033121a9bef708b8f2de186c4034c61d4a3 (diff) | |
download | gitlab-ce-a89cb5cbdd832d4d9e80517973aceda6bc0a3856.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/lib/container_registry')
-rw-r--r-- | spec/lib/container_registry/registry_spec.rb | 2 | ||||
-rw-r--r-- | spec/lib/container_registry/tag_spec.rb | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/spec/lib/container_registry/registry_spec.rb b/spec/lib/container_registry/registry_spec.rb index 7cf70a1f562..e509566fae8 100644 --- a/spec/lib/container_registry/registry_spec.rb +++ b/spec/lib/container_registry/registry_spec.rb @@ -14,7 +14,7 @@ describe ContainerRegistry::Registry do it { expect(subject).not_to be_nil } - context '#path' do + describe '#path' do subject { registry.path } context 'path from URL' do diff --git a/spec/lib/container_registry/tag_spec.rb b/spec/lib/container_registry/tag_spec.rb index 9447112e4a8..085c73caa97 100644 --- a/spec/lib/container_registry/tag_spec.rb +++ b/spec/lib/container_registry/tag_spec.rb @@ -70,26 +70,26 @@ describe ContainerRegistry::Tag do headers: { 'Content-Type' => 'application/vnd.docker.distribution.manifest.v1+prettyjws' }) end - context '#layers' do + describe '#layers' do subject { tag.layers } it { expect(subject.length).to eq(1) } end - context '#total_size' do + describe '#total_size' do subject { tag.total_size } it { is_expected.to be_nil } end context 'config processing' do - context '#config' do + describe '#config' do subject { tag.config } it { is_expected.to be_nil } end - context '#created_at' do + describe '#created_at' do subject { tag.created_at } it { is_expected.to be_nil } @@ -113,7 +113,7 @@ describe ContainerRegistry::Tag do body: File.read(Rails.root + 'spec/fixtures/container_registry/config_blob_helm.json')) end - context '#created_at' do + describe '#created_at' do subject { tag.created_at } it { is_expected.to be_nil } @@ -130,13 +130,13 @@ describe ContainerRegistry::Tag do headers: { 'Content-Type' => 'application/vnd.docker.distribution.manifest.v2+json' }) end - context '#layers' do + describe '#layers' do subject { tag.layers } it { expect(subject.length).to eq(1) } end - context '#total_size' do + describe '#total_size' do subject { tag.total_size } it { is_expected.to eq(2319870) } @@ -144,13 +144,13 @@ describe ContainerRegistry::Tag do context 'config processing' do shared_examples 'a processable' do - context '#config' do + describe '#config' do subject { tag.config } it { is_expected.not_to be_nil } end - context '#created_at' do + describe '#created_at' do subject { tag.created_at } it { is_expected.not_to be_nil } |