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
7e9a52d0
Commit
7e9a52d0
authored
Jun 27, 2017
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'sh-unset-stubenv' into 'master'
Reset the state of StubENV's @env_already_stubbed after each spec run See merge request !12438
parents
cefa4dc0
1a47bd37
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
stub_env.rb
spec/support/stub_env.rb
+8
-0
No files found.
spec/support/stub_env.rb
View file @
7e9a52d0
...
...
@@ -5,3 +5,11 @@ module StubENV
allow
(
ENV
).
to
receive
(
:[]
).
with
(
key
).
and_return
(
value
)
end
end
# It's possible that the state of the class variables are not reset across
# test runs.
RSpec
.
configure
do
|
config
|
config
.
after
(
:each
)
do
@env_already_stubbed
=
nil
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