disable deprecated "should" syntax

This commit is contained in:
Adam Spiers 2014-01-22 15:02:32 +00:00
parent 2dbb942f43
commit f209714e40

View File

@ -27,4 +27,10 @@ RSpec.configure do |config|
# Specify the operating version to mock Ohai data from (default: nil)
config.version = '11.03'
# Disable deprecated "should" syntax
# https://github.com/rspec/rspec-expectations/blob/master/Should.md
config.expect_with :rspec do |c|
c.syntax = :expect
end
end