From 5034cc377a86f884aa3466aff71ccac730193d57 Mon Sep 17 00:00:00 2001 From: Brint O'Hearn Date: Sun, 15 May 2016 19:22:52 -0500 Subject: [PATCH] Rubocop fixes for test/simplecov_custom_profile.rb --- .rubocop.yml | 1 - test/simplecov_custom_profile.rb | 14 +++++++------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index fc8fcb6c..588e630c 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -70,7 +70,6 @@ AllCops: - features/step_definitions.rb - features/support/formatter.rb - features/support/helpers.rb - - test/simplecov_custom_profile.rb - test/test_configuration.rb - test/test_convertible.rb - test/test_doctor_command.rb diff --git a/test/simplecov_custom_profile.rb b/test/simplecov_custom_profile.rb index d7f4914c..0aaec88a 100644 --- a/test/simplecov_custom_profile.rb +++ b/test/simplecov_custom_profile.rb @@ -1,10 +1,10 @@ -require 'simplecov' +require "simplecov" -SimpleCov.profiles.define 'gem' do - add_filter '/test/' - add_filter '/features/' - add_filter '/autotest/' +SimpleCov.profiles.define "gem" do + add_filter "/test/" + add_filter "/features/" + add_filter "/autotest/" - add_group 'Binaries', '/bin/' - add_group 'Libraries', '/lib/' + add_group "Binaries", "/bin/" + add_group "Libraries", "/lib/" end