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
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
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
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