1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00
capistrano/test/utils.rb

42 lines
722 B
Ruby

class Module
def const_during(constant, value)
if const_defined?(constant)
overridden = true
saved = const_get(constant)
remove_const(constant)
end
const_set(constant, value)
yield
ensure
if overridden
remove_const(constant)
const_set(constant, saved)
end
end
end
class MockLogger
def info(msg,pfx=nil) end
def debug(msg,pfx=nil) end
end
class MockConfiguration < Hash
def initialize(*args)
super
self[:release_path] = "/path/to/releases/version"
self[:ssh_options] = {}
end
def logger
@logger ||= MockLogger.new
end
def method_missing(sym, *args)
if args.length == 0
self[sym]
else
super
end
end
end