spec/spec_helper.rb in rotp-3.2.0 vs spec/spec_helper.rb in rotp-3.3.0

- old
+ new

@@ -1,7 +1,8 @@ require 'rotp' require 'timecop' +require 'simplecov' RSpec.configure do |config| config.disable_monkey_patching! config.raise_errors_for_deprecations! config.color = true @@ -9,5 +10,9 @@ config.before do Timecop.return end end + +SimpleCov.start + +require_relative '../lib/rotp'