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
Léo-Paul Géneau
gitlab-ce
Commits
038dbb68
Commit
038dbb68
authored
May 09, 2016
by
Andrei Gliga
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DRYing enabled_button_based_providers tests
parent
3922e7ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
spec/helpers/auth_helper_spec.rb
spec/helpers/auth_helper_spec.rb
+4
-7
No files found.
spec/helpers/auth_helper_spec.rb
View file @
038dbb68
...
...
@@ -19,8 +19,11 @@ describe AuthHelper do
end
describe
'enabled_button_based_providers'
do
it
'returns all the enabled providers from settings'
do
before
do
allow
(
helper
).
to
receive
(
:auth_providers
)
{
[
:twitter
,
:github
]
}
end
it
'returns all the enabled providers from settings'
do
expect
(
helper
.
enabled_button_based_providers
).
to
include
(
*
[
'twitter'
,
'github'
])
end
...
...
@@ -29,15 +32,11 @@ describe AuthHelper do
disabled_oauth_sign_in_sources:
[
'github'
]
)
allow
(
helper
).
to
receive
(
:auth_providers
)
{
[
:twitter
,
:github
]
}
expect
(
helper
.
enabled_button_based_providers
).
to
include
(
'twitter'
)
expect
(
helper
.
enabled_button_based_providers
).
to_not
include
(
'github'
)
end
it
'returns true for button_based_providers_enabled? because there providers'
do
allow
(
helper
).
to
receive
(
:auth_providers
)
{
[
:twitter
,
:github
]
}
expect
(
helper
.
button_based_providers_enabled?
).
to
be
true
end
...
...
@@ -46,8 +45,6 @@ describe AuthHelper do
disabled_oauth_sign_in_sources:
[
'github'
,
'twitter'
]
)
allow
(
helper
).
to
receive
(
:auth_providers
)
{
[
:twitter
,
:github
]
}
expect
(
helper
.
button_based_providers_enabled?
).
to
be
false
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