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
iv
gitlab-ce
Commits
ce4478ed
Commit
ce4478ed
authored
Jun 24, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add ci config entry that represents array of paths
parent
e017e1b6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
0 deletions
+52
-0
lib/gitlab/ci/config/node/paths.rb
lib/gitlab/ci/config/node/paths.rb
+18
-0
spec/lib/gitlab/ci/config/node/paths_spec.rb
spec/lib/gitlab/ci/config/node/paths_spec.rb
+34
-0
No files found.
lib/gitlab/ci/config/node/paths.rb
0 → 100644
View file @
ce4478ed
module
Gitlab
module
Ci
class
Config
module
Node
##
# Entry that represents an array of paths.
#
class
Paths
<
Entry
include
Validatable
validations
do
validates
:config
,
array_of_strings:
true
end
end
end
end
end
end
spec/lib/gitlab/ci/config/node/paths_spec.rb
0 → 100644
View file @
ce4478ed
require
'spec_helper'
describe
Gitlab
::
Ci
::
Config
::
Node
::
Paths
do
let
(
:entry
)
{
described_class
.
new
(
config
)
}
describe
'validations'
do
context
'when entry config value is valid'
do
let
(
:config
)
{
[
'some/file'
,
'some/path/'
]
}
describe
'#value'
do
it
'returns key value'
do
expect
(
entry
.
value
).
to
eq
config
end
end
describe
'#valid?'
do
it
'is valid'
do
expect
(
entry
).
to
be_valid
end
end
end
context
'when entry value is not valid'
do
let
(
:config
)
{
[
1
]
}
describe
'#errors'
do
it
'saves errors'
do
expect
(
entry
.
errors
)
.
to
include
'Paths config should be an array of strings'
end
end
end
end
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