summaryrefslogtreecommitdiff
path: root/spec/helpers/oauth_helper_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/helpers/oauth_helper_spec.rb')
-rw-r--r--spec/helpers/oauth_helper_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/helpers/oauth_helper_spec.rb b/spec/helpers/oauth_helper_spec.rb
index 453699136e9..088c342fa13 100644
--- a/spec/helpers/oauth_helper_spec.rb
+++ b/spec/helpers/oauth_helper_spec.rb
@@ -4,17 +4,17 @@ describe OauthHelper do
describe "additional_providers" do
it 'returns all enabled providers' do
allow(helper).to receive(:enabled_oauth_providers) { [:twitter, :github] }
- helper.additional_providers.should include(*[:twitter, :github])
+ expect(helper.additional_providers).to include(*[:twitter, :github])
end
it 'does not return ldap provider' do
allow(helper).to receive(:enabled_oauth_providers) { [:twitter, :ldapmain] }
- helper.additional_providers.should include(:twitter)
+ expect(helper.additional_providers).to include(:twitter)
end
it 'returns empty array' do
allow(helper).to receive(:enabled_oauth_providers) { [] }
- helper.additional_providers.should == []
+ expect(helper.additional_providers).to eq([])
end
end
end \ No newline at end of file