aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/support
diff options
context:
space:
mode:
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