Commit d0c953ce5cb1cdd54c2e7958733f17816cde2c51

Authored by Braulio Bhavamitra
1 parent d663bb67

rspec3: enable deprecated should syntax

Showing 1 changed file with 11 additions and 0 deletions   Show diff stats
features/support/rspec.rb 0 → 100644
... ... @@ -0,0 +1,11 @@
  1 +require 'rspec'
  2 +
  3 +# FIXME: should syntax is DEPRECATED
  4 +RSpec.configure do |config|
  5 + config.mock_with :rspec do |c|
  6 + c.syntax = [:should, :expect]
  7 + end
  8 + config.expect_with :rspec do |c|
  9 + c.syntax = [:should, :expect]
  10 + end
  11 +end
... ...