spec/spec_helper.rb in omniauth-yammer-0.0.7 vs spec/spec_helper.rb in omniauth-yammer-0.0.8

- old
+ new

@@ -7,9 +7,15 @@ require 'webmock/rspec' require 'omniauth' require 'omniauth-yammer' RSpec.configure do |config| + + config.expect_with :rspec do |c| + c.syntax = :expect + end + config.include WebMock::API config.include Rack::Test::Methods - config.extend OmniAuth::Test::StrategyMacros, :type => :strategy -end \ No newline at end of file + config.extend OmniAuth::Test::StrategyMacros, type: :strategy + +end