aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/test
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/cask/test')
-rw-r--r--Library/Homebrew/cask/test/support/never_sudo_system_command.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/Library/Homebrew/cask/test/support/never_sudo_system_command.rb b/Library/Homebrew/cask/test/support/never_sudo_system_command.rb
deleted file mode 100644
index 8a370df44..000000000
--- a/Library/Homebrew/cask/test/support/never_sudo_system_command.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-module Hbc
- class NeverSudoSystemCommand < SystemCommand
- def self.run(command, options = {})
- super(command, options.merge(sudo: false))
- end
- end
-end