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
28fe92a1
Commit
28fe92a1
authored
Sep 11, 2019
by
Rubén Dávila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix broken spec
parent
3e7f4801
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
ee/spec/lib/gitlab/subscription_portal/client_spec.rb
ee/spec/lib/gitlab/subscription_portal/client_spec.rb
+3
-1
No files found.
ee/spec/lib/gitlab/subscription_portal/client_spec.rb
View file @
28fe92a1
...
...
@@ -5,7 +5,9 @@ require 'spec_helper'
describe
Gitlab
::
SubscriptionPortal
::
Client
do
describe
'#create_trial_account'
do
let
(
:http_response
)
{
nil
}
let
(
:httparty_response
)
{
double
(
code:
http_response
.
code
,
response:
http_response
,
body:
{}.
to_json
)
}
let
(
:httparty_response
)
do
double
(
code:
http_response
.
code
,
response:
http_response
,
body:
{},
parsed_response:
{})
end
subject
do
described_class
.
new
.
generate_trial
({})
...
...
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