brew/Library/Homebrew/cask/test/support/fake_fetcher.rb
AnastasiaSulyagina e81f4ab7de init
2016-08-19 14:50:14 +03:00

36 lines
551 B
Ruby

class Hbc::FakeFetcher
def self.fake_response_for(url, response)
@responses[url] = response
end
def self.head(url)
@responses ||= {}
raise("no response faked for #{url.inspect}") unless @responses.key?(url)
@responses[url]
end
def self.init
@responses = {}
end
def self.clear
@responses = {}
end
end
module FakeFetcherHooks
def before_setup
super
Hbc::FakeFetcher.init
end
def after_teardown
super
Hbc::FakeFetcher.clear
end
end
class MiniTest::Spec
include FakeFetcherHooks
end