diff --git a/features/support/rspec.rb b/features/support/rspec.rb new file mode 100644 index 0000000..6bd486e --- /dev/null +++ b/features/support/rspec.rb @@ -0,0 +1,11 @@ +require 'rspec' + +# FIXME: should syntax is DEPRECATED +RSpec.configure do |config| + config.mock_with :rspec do |c| + c.syntax = [:should, :expect] + end + config.expect_with :rspec do |c| + c.syntax = [:should, :expect] + end +end -- libgit2 0.21.2