spec/spec_helper.rb in savon-0.9.2 vs spec/spec_helper.rb in savon-0.9.3

- old
+ new

@@ -3,12 +3,13 @@ RSpec.configure do |config| config.mock_with :mocha end -require "savon" - -# Disable logging for specs. -Savon.log = false +# Disable logging and deprecations for specs. +Savon.configure do |config| + config.log = false + config.deprecate = false +end require "support/endpoint" require "support/fixture"