diff options
Diffstat (limited to 'switchtower/test/configuration_test.rb')
-rw-r--r-- | switchtower/test/configuration_test.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/switchtower/test/configuration_test.rb b/switchtower/test/configuration_test.rb index 2ec299ab6d..ecbc0a5607 100644 --- a/switchtower/test/configuration_test.rb +++ b/switchtower/test/configuration_test.rb @@ -18,7 +18,6 @@ class ConfigurationTest < Test::Unit::TestCase class MockSCM attr_reader :configuration - attr_accessor :latest_revision def initialize(config) @configuration = config @@ -184,8 +183,7 @@ class ConfigurationTest < Test::Unit::TestCase def test_release_path_implicit @config.set :deploy_to, "/start/of/path" - @config.source.latest_revision = 2257 - assert_equal "/start/of/path/releases/2257", @config.release_path + assert_equal "/start/of/path/releases/#{@config.now.strftime("%Y%m%d%H%M%S")}", @config.release_path end def test_release_path_explicit |