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
e52bae3b
Commit
e52bae3b
authored
Jan 11, 2018
by
Matija Čupić
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix CheckGcpProjectBillingService spec
parent
0cdd56e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
spec/services/check_gcp_project_billing_service_spec.rb
spec/services/check_gcp_project_billing_service_spec.rb
+2
-2
No files found.
spec/services/check_gcp_project_billing_service_spec.rb
View file @
e52bae3b
...
...
@@ -2,7 +2,7 @@ require 'spec_helper'
describe
CheckGcpProjectBillingService
do
let
(
:service
)
{
described_class
.
new
}
let
(
:projects
)
{
[
double
(
name:
'first_project'
),
double
(
name:
'second_project
'
)]
}
let
(
:projects
)
{
[
double
(
name:
'first_project'
,
project_id:
'first_project-1234'
),
double
(
name:
'second_project'
,
project_id:
'second_project-1234
'
)]
}
describe
'#execute'
do
before
do
...
...
@@ -10,7 +10,7 @@ describe CheckGcpProjectBillingService do
.
to
receive
(
:projects_list
).
and_return
(
projects
)
allow_any_instance_of
(
GoogleApi
::
CloudPlatform
::
Client
)
.
to
receive_message_chain
(
:projects_get_billing_info
,
:billing
E
nabled
)
.
to
receive_message_chain
(
:projects_get_billing_info
,
:billing
_e
nabled
)
.
and_return
(
project_billing_enabled
)
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