require 'simplecov' SimpleCov.start do add_filter 'spec' end require 'bundler/setup' require 'vinz' RSpec.configure do |config| config.order = 'random' config.expect_with :rspec do |c| c.syntax = :expect end config.mock_with :rspec do |c| c.syntax = :expect end end