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
Boxiang Sun
gitlab-ce
Commits
758e0200
Commit
758e0200
authored
Jun 27, 2017
by
Gabriel Mazetto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable rainbow during SimpleExecutor specs to have consistence
parent
b0f2861c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
spec/lib/system_check/simple_executor_spec.rb
spec/lib/system_check/simple_executor_spec.rb
+11
-2
No files found.
spec/lib/system_check/simple_executor_spec.rb
View file @
758e0200
...
...
@@ -84,6 +84,15 @@ describe SystemCheck::SimpleExecutor, lib: true do
end
end
before
do
@rainbow
=
Rainbow
.
enabled
Rainbow
.
enabled
=
false
end
after
do
Rainbow
.
enabled
=
@rainbow
end
describe
'#component'
do
it
'returns stored component name'
do
expect
(
subject
.
component
).
to
eq
(
'Test'
)
...
...
@@ -147,14 +156,14 @@ describe SystemCheck::SimpleExecutor, lib: true do
context
'when check pass'
do
it
'prints yes'
do
expect_any_instance_of
(
SimpleCheck
).
to
receive
(
:check?
).
and_call_original
expect
{
subject
.
run_check
(
SimpleCheck
)
}.
to
output
(
/ \.\.\.
\e\[32m
yes/
).
to_stdout
expect
{
subject
.
run_check
(
SimpleCheck
)
}.
to
output
(
/ \.\.\. yes/
).
to_stdout
end
end
context
'when check fails'
do
it
'prints no'
do
expect_any_instance_of
(
OtherCheck
).
to
receive
(
:check?
).
and_call_original
expect
{
subject
.
run_check
(
OtherCheck
)
}.
to
output
(
/ \.\.\.
\e\[31m
no/
).
to_stdout
expect
{
subject
.
run_check
(
OtherCheck
)
}.
to
output
(
/ \.\.\. no/
).
to_stdout
end
it
'displays error message from #show_error'
do
...
...
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