Skip to content
Snippets Groups Projects
Commit 3d744009 authored by Vratislav Kalenda's avatar Vratislav Kalenda
Browse files

fix code style issues

parent 2420d838
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -52,7 +52,10 @@ describe Auth::ContainerRegistryAuthenticationService do
 
it_behaves_like 'a valid token'
it_behaves_like 'not a container repository factory'
it { expect(payload).to include('access' => access) }
it 'has the correct scope' do
expect(payload).to include('access' => access)
end
end
 
shared_examples 'an accessible' do
Loading
Loading
@@ -63,7 +66,10 @@ describe Auth::ContainerRegistryAuthenticationService do
end
 
it_behaves_like 'a valid token'
it { expect(payload).to include('access' => access) }
it 'has the correct scope' do
expect(payload).to include('access' => access)
end
end
 
shared_examples 'an inaccessible' do
Loading
Loading
@@ -515,6 +521,7 @@ describe Auth::ContainerRegistryAuthenticationService do
 
context 'registry catalog browsing authorized as admin' do
let(:current_user) { create(:user, :admin) }
let(:current_params) do
{ scope: "registry:catalog:*" }
end
Loading
Loading
@@ -573,6 +580,7 @@ describe Auth::ContainerRegistryAuthenticationService do
let(:current_params) do
{ scope: "registry:catalog:*" }
end
it_behaves_like 'a forbidden'
it_behaves_like 'not a container repository factory'
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment