spec/spec_helper.rb in comfan-0.1.1 vs spec/spec_helper.rb in comfan-0.1.2
- old
+ new
@@ -1,15 +1,15 @@
-require 'simplecov'
-require 'coveralls'
+require "simplecov"
+require "coveralls"
SimpleCov.formatter = Coveralls::SimpleCov::Formatter
SimpleCov.start do
- add_filter 'spec'
+ add_filter "spec"
end
-require 'comfan'
+require "comfan"
RSpec.configure do |config|
config.mock_with :rspec
- config.order = 'random'
+ config.order = "random"
config.filter_run_excluding skip: true
-end
\ No newline at end of file
+end