spec/spec_helper.rb in mpg321-0.4.0 vs spec/spec_helper.rb in mpg321-1.0.0

- old
+ new

@@ -1,10 +1,11 @@ -require 'bundler/setup' require 'simplecov' +SimpleCov.add_filter '/spec/' SimpleCov.start +require 'mpg321' -Dir['./spec/support/*.rb'].map {|f| require f } +Dir['./spec/support/*.rb'].each { |f| require f } RSpec.configure do |config| config.filter_run :focus => true config.run_all_when_everything_filtered = true end