BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
37ab3891
Commit
37ab3891
authored
Apr 13, 2017
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Fix registry for projects with uppercases in path"
This reverts commit
22726942
.
parent
22726942
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
18 deletions
+2
-18
path.rb
lib/container_registry/path.rb
+1
-1
path_spec.rb
spec/lib/container_registry/path_spec.rb
+1
-17
No files found.
lib/container_registry/path.rb
View file @
37ab3891
...
@@ -15,7 +15,7 @@ module ContainerRegistry
...
@@ -15,7 +15,7 @@ module ContainerRegistry
LEVELS_SUPPORTED
=
3
LEVELS_SUPPORTED
=
3
def
initialize
(
path
)
def
initialize
(
path
)
@path
=
path
.
downcase
@path
=
path
end
end
def
valid?
def
valid?
...
...
spec/lib/container_registry/path_spec.rb
View file @
37ab3891
...
@@ -33,20 +33,10 @@ describe ContainerRegistry::Path do
...
@@ -33,20 +33,10 @@ describe ContainerRegistry::Path do
end
end
describe
'#to_s'
do
describe
'#to_s'
do
context
'when path does not have uppercase characters'
do
let
(
:path
)
{
'some/image'
}
let
(
:path
)
{
'some/image'
}
it
'return a string with a repository path'
do
it
'return a string with a repository path'
do
expect
(
subject
.
to_s
).
to
eq
'some/image'
expect
(
subject
.
to_s
).
to
eq
path
end
end
context
'when path has uppercase characters'
do
let
(
:path
)
{
'SoMe/ImAgE'
}
it
'return a string with a repository path'
do
expect
(
subject
.
to_s
).
to
eq
'some/image'
end
end
end
end
end
...
@@ -80,12 +70,6 @@ describe ContainerRegistry::Path do
...
@@ -80,12 +70,6 @@ describe ContainerRegistry::Path do
it
{
is_expected
.
to
be_valid
}
it
{
is_expected
.
to
be_valid
}
end
end
context
'when path contains uppercase letters'
do
let
(
:path
)
{
'Some/Registry'
}
it
{
is_expected
.
to
be_valid
}
end
end
end
describe
'#has_repository?'
do
describe
'#has_repository?'
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment