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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
80422242
Commit
80422242
authored
Jun 04, 2020
by
Mark Chao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Note feature level in spec
[skip-ci]
parent
ece0afa5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
ee/spec/lib/gitlab/gl_repository/identifier_spec.rb
ee/spec/lib/gitlab/gl_repository/identifier_spec.rb
+1
-0
ee/spec/lib/gitlab/gl_repository_spec.rb
ee/spec/lib/gitlab/gl_repository_spec.rb
+1
-0
No files found.
ee/spec/lib/gitlab/gl_repository/identifier_spec.rb
View file @
80422242
...
...
@@ -5,6 +5,7 @@ require 'spec_helper'
describe
Gitlab
::
GlRepository
::
Identifier
do
let_it_be
(
:group
)
{
create
(
:group
)
}
# GitLab Starter feature
context
'group wiki'
do
it_behaves_like
'parsing gl_repository identifier'
do
let
(
:record_id
)
{
group
.
id
}
...
...
ee/spec/lib/gitlab/gl_repository_spec.rb
View file @
80422242
...
...
@@ -6,6 +6,7 @@ describe ::Gitlab::GlRepository do
describe
'.parse'
do
let_it_be
(
:group
)
{
create
(
:group
)
}
# Group Wiki is a GitLab Starter feature
it
'parses a group wiki gl_repository'
do
expect
(
described_class
.
parse
(
"group-
#{
group
.
id
}
-wiki"
)).
to
eq
([
group
,
nil
,
Gitlab
::
GlRepository
::
WIKI
])
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