Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
92ca24fc
Commit
92ca24fc
authored
May 12, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added model specs
parent
025a1b01
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
spec/models/protected_branch/merge_access_level_spec.rb
spec/models/protected_branch/merge_access_level_spec.rb
+5
-0
spec/models/protected_branch/push_access_level_spec.rb
spec/models/protected_branch/push_access_level_spec.rb
+5
-0
No files found.
spec/models/protected_branch/merge_access_level_spec.rb
0 → 100644
View file @
92ca24fc
require
'spec_helper'
describe
ProtectedBranch
::
MergeAccessLevel
,
:models
do
it
{
is_expected
.
to
validate_inclusion_of
(
:access_level
).
in_array
([
Gitlab
::
Access
::
MASTER
,
Gitlab
::
Access
::
DEVELOPER
,
Gitlab
::
Access
::
NO_ACCESS
])
}
end
spec/models/protected_branch/push_access_level_spec.rb
0 → 100644
View file @
92ca24fc
require
'spec_helper'
describe
ProtectedBranch
::
PushAccessLevel
,
:models
do
it
{
is_expected
.
to
validate_inclusion_of
(
:access_level
).
in_array
([
Gitlab
::
Access
::
MASTER
,
Gitlab
::
Access
::
DEVELOPER
,
Gitlab
::
Access
::
NO_ACCESS
])
}
end
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