spec/spec_helper.rb in bic_validation-0.0.2 vs spec/spec_helper.rb in bic_validation-0.1.0

- old
+ new

@@ -1,7 +1,8 @@ require 'simplecov' require 'coveralls' +require 'pry' SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[ SimpleCov::Formatter::HTMLFormatter, Coveralls::SimpleCov::Formatter ] @@ -19,6 +20,10 @@ # Run specs in random order to surface order dependencies. If you find an # order dependency and want to debug it, you can fix the order by providing # the seed, which is printed after each run. # --seed 1234 config.order = 'random' + + config.expect_with :rspec do |c| + c.syntax = :expect + end end