fix code style issues

This commit is contained in:
Vratislav Kalenda 2017-10-10 23:46:18 +02:00
parent 2420d83872
commit 3d744009ed

View file

@ -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
@ -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
@ -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
@ -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