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
98db90c4
Commit
98db90c4
authored
Nov 05, 2014
by
Ciro Santilli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Factor regex error messages with spec API tests
parent
f9814bf2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
8 deletions
+4
-8
projects_spec.rb
spec/requests/api/projects_spec.rb
+2
-4
users_spec.rb
spec/requests/api/users_spec.rb
+2
-4
No files found.
spec/requests/api/projects_spec.rb
View file @
98db90c4
...
...
@@ -203,14 +203,12 @@ describe API::API, api: true do
json_response
[
'message'
][
'name'
].
should
==
[
'can\'t be blank'
,
'is too short (minimum is 0 characters)'
,
'can contain only letters, digits, \'_\', \'-\' and \'.\' and '
\
'space. It must start with letter, digit or \'_\'.'
Gitlab
::
Regex
.
project_regex_message
]
json_response
[
'message'
][
'path'
].
should
==
[
'can\'t be blank'
,
'is too short (minimum is 0 characters)'
,
'can contain only letters, digits, \'_\', \'-\' and \'.\'. '
\
'Cannot start with \'-\' or end in \'.git\''
Gitlab
::
Regex
.
send
(
:default_regex_message
)
]
end
...
...
spec/requests/api/users_spec.rb
View file @
98db90c4
...
...
@@ -140,8 +140,7 @@ describe API::API, api: true do
json_response
[
'message'
][
'projects_limit'
].
should
==
[
'must be greater than or equal to 0'
]
json_response
[
'message'
][
'username'
].
should
==
[
'can contain only letters, digits, '
\
'\'_\', \'-\' and \'.\'. Cannot start with \'-\' or end in \'.git\''
]
should
==
[
Gitlab
::
Regex
.
send
(
:default_regex_message
)]
end
it
"shouldn't available for non admin users"
do
...
...
@@ -283,8 +282,7 @@ describe API::API, api: true do
json_response
[
'message'
][
'projects_limit'
].
should
==
[
'must be greater than or equal to 0'
]
json_response
[
'message'
][
'username'
].
should
==
[
'can contain only letters, digits, '
\
'\'_\', \'-\' and \'.\'. Cannot start with \'-\' or end in \'.git\''
]
should
==
[
Gitlab
::
Regex
.
send
(
:default_regex_message
)]
end
context
"with existing user"
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