diff options
Diffstat (limited to 'switchtower/test')
-rw-r--r-- | switchtower/test/utils.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/switchtower/test/utils.rb b/switchtower/test/utils.rb index b483f0c005..4ddfbdbad1 100644 --- a/switchtower/test/utils.rb +++ b/switchtower/test/utils.rb @@ -22,6 +22,11 @@ class MockLogger end class MockConfiguration < Hash + def initialize(*args) + super + self[:release_path] = "/path/to/releases/version" + end + def logger @logger ||= MockLogger.new end |