Fix rspec configuration to use expect_with, not mock_with

This commit is contained in:
Dan Kubb 2013-09-09 21:45:25 -07:00
parent 8988cfabcd
commit e8a8c832e2

View file

@ -47,7 +47,7 @@ RSpec.configure do |config|
config.include(CompressHelper)
config.include(ParserHelper)
config.include(Mutant::NodeHelpers)
config.mock_with :rspec do |rspec|
config.expect_with :rspec do |rspec|
rspec.syntax = [:expect, :should]
end
end