diff options
| author | Mike McQuaid | 2017-05-03 11:28:25 +0100 |
|---|---|---|
| committer | GitHub | 2017-05-03 11:28:25 +0100 |
| commit | 555505ec5458b1f2c594fc847074289745029dad (patch) | |
| tree | effba1b081dedd13323add19d0a7ffd02e9337a3 /Library/Homebrew/test | |
| parent | ffa45521f49eaa78fab93a409904cecc00d2af61 (diff) | |
| parent | fed668b330e151bde493e004d7c6ca57df4e19ff (diff) | |
| download | brew-555505ec5458b1f2c594fc847074289745029dad.tar.bz2 | |
Merge pull request #2531 from GauthamGoli/audit_cops_options_refactor
audit: Allow skipping/selective running of cops and cops refactor
Diffstat (limited to 'Library/Homebrew/test')
4 files changed, 4 insertions, 4 deletions
diff --git a/Library/Homebrew/test/rubocops/bottle_block_cop_spec.rb b/Library/Homebrew/test/rubocops/bottle_block_cop_spec.rb index 5be2d6cf5..a775b0b17 100644 --- a/Library/Homebrew/test/rubocops/bottle_block_cop_spec.rb +++ b/Library/Homebrew/test/rubocops/bottle_block_cop_spec.rb @@ -3,7 +3,7 @@ require "rubocop/rspec/support" require_relative "../../extend/string" require_relative "../../rubocops/bottle_block_cop" -describe RuboCop::Cop::Homebrew::CorrectBottleBlock do +describe RuboCop::Cop::FormulaAuditStrict::BottleBlock do subject(:cop) { described_class.new } context "When auditing Bottle Block" do diff --git a/Library/Homebrew/test/rubocops/components_order_cop_spec.rb b/Library/Homebrew/test/rubocops/components_order_cop_spec.rb index a424da863..05ff53d8f 100644 --- a/Library/Homebrew/test/rubocops/components_order_cop_spec.rb +++ b/Library/Homebrew/test/rubocops/components_order_cop_spec.rb @@ -3,7 +3,7 @@ require "rubocop/rspec/support" require_relative "../../extend/string" require_relative "../../rubocops/components_order_cop" -describe RuboCop::Cop::Homebrew::FormulaComponentsOrder do +describe RuboCop::Cop::FormulaAuditStrict::ComponentsOrder do subject(:cop) { described_class.new } context "When auditing formula components order" do diff --git a/Library/Homebrew/test/rubocops/components_redundancy_cop_spec.rb b/Library/Homebrew/test/rubocops/components_redundancy_cop_spec.rb index 5637330d8..fd635a126 100644 --- a/Library/Homebrew/test/rubocops/components_redundancy_cop_spec.rb +++ b/Library/Homebrew/test/rubocops/components_redundancy_cop_spec.rb @@ -3,7 +3,7 @@ require "rubocop/rspec/support" require_relative "../../extend/string" require_relative "../../rubocops/components_redundancy_cop" -describe RuboCop::Cop::Homebrew::ComponentsRedundancy do +describe RuboCop::Cop::FormulaAuditStrict::ComponentsRedundancy do subject(:cop) { described_class.new } context "When auditing formula components common errors" do diff --git a/Library/Homebrew/test/rubocops/formula_desc_cop_spec.rb b/Library/Homebrew/test/rubocops/formula_desc_cop_spec.rb index 04c4c27da..581667935 100644 --- a/Library/Homebrew/test/rubocops/formula_desc_cop_spec.rb +++ b/Library/Homebrew/test/rubocops/formula_desc_cop_spec.rb @@ -3,7 +3,7 @@ require "rubocop/rspec/support" require_relative "../../extend/string" require_relative "../../rubocops/formula_desc_cop" -describe RuboCop::Cop::Homebrew::FormulaDesc do +describe RuboCop::Cop::FormulaAuditStrict::Desc do subject(:cop) { described_class.new } context "When auditing formula desc" do |
