spec/spec_helper.rb in input_sanitizer-0.2.0 vs spec/spec_helper.rb in input_sanitizer-0.2.2

- old
+ new

@@ -4,6 +4,17 @@ unless ENV['CI'] require 'simplecov' SimpleCov.start end +RSpec.configure do |config| + config.expect_with :rspec do |c| + c.syntax = :should + end + + config.mock_with :rspec do |c| + c.syntax = :should + end +end + require 'input_sanitizer' +require 'pry'