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
df66e911
Commit
df66e911
authored
Feb 27, 2018
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve specs for pipeline expression statement
parent
bd17ff3d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
spec/lib/gitlab/ci/pipeline/expression/statement_spec.rb
spec/lib/gitlab/ci/pipeline/expression/statement_spec.rb
+5
-4
No files found.
spec/lib/gitlab/ci/pipeline/expression/statement_spec.rb
View file @
df66e911
...
...
@@ -2,7 +2,6 @@ require 'spec_helper'
describe
Gitlab
::
Ci
::
Pipeline
::
Expression
::
Statement
do
let
(
:pipeline
)
{
build
(
:ci_pipeline
)
}
let
(
:text
)
{
'$VAR "text"'
}
subject
do
described_class
.
new
(
text
,
pipeline
)
...
...
@@ -74,10 +73,12 @@ describe Gitlab::Ci::Pipeline::Expression::Statement do
]
statements
.
each
do
|
expression
,
value
|
it
"evaluates `
#{
expression
}
` to `
#{
value
}
`"
do
statement
=
described_class
.
new
(
expression
,
pipeline
)
context
"when using expression `
#{
expression
}
`"
do
let
(
:text
)
{
expression
}
expect
(
statement
.
evaluate
).
to
eq
value
it
"evaluates to `
#{
value
.
inspect
}
`"
do
expect
(
subject
.
evaluate
).
to
eq
value
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