aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/support
diff options
context:
space:
mode:
authorMarkus Reiter2017-10-21 03:12:50 +0200
committerMarkus Reiter2017-10-24 19:39:40 +0200
commit7e970216a341c7ed4ff82114247bf33cafdd3266 (patch)
tree4da040488227cfe019ce1d51ce311ea70a719f82 /Library/Homebrew/test/support
parentfd29511bae8ba381c72bbdc7effd842fc46b0fac (diff)
downloadbrew-7e970216a341c7ed4ff82114247bf33cafdd3266.tar.bz2
Refactor and fix RuboCop specs.
Diffstat (limited to 'Library/Homebrew/test/support')
-rw-r--r--Library/Homebrew/test/support/helper/rubocop.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/Library/Homebrew/test/support/helper/rubocop.rb b/Library/Homebrew/test/support/helper/rubocop.rb
deleted file mode 100644
index 351f2ad82..000000000
--- a/Library/Homebrew/test/support/helper/rubocop.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-module Test
- module Helper
- module RuboCop
- def expect_offense(expected, actual)
- expect(actual).to_not be_nil
- expect(actual.message).to eq(expected[:message])
- expect(actual.severity).to eq(expected[:severity])
- expect(actual.line).to eq(expected[:line])
- expect(actual.column).to eq(expected[:column])
- end
- end
- end
-end