From affb615a8a5da2d41383741fd51871261550925e Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Wed, 24 Aug 2005 15:15:23 +0000 Subject: SwitchTower: use a timestamp as the release name, instead of the revision number. Various tweaks and fixes to the supported scm modules. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2046 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- switchtower/test/scm/cvs_test.rb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'switchtower/test/scm/cvs_test.rb') diff --git a/switchtower/test/scm/cvs_test.rb b/switchtower/test/scm/cvs_test.rb index 3df64cce0e..4532870826 100644 --- a/switchtower/test/scm/cvs_test.rb +++ b/switchtower/test/scm/cvs_test.rb @@ -44,6 +44,10 @@ class ScmCvsTest < Test::Unit::TestCase story.each { |stream, line| yield @channels.last, stream, line } end + def release_path + (@config[:now] || Time.now.utc).strftime("%Y%m%d%H%M%S") + end + def method_missing(sym, *args) @config.send(sym, *args) end @@ -55,6 +59,7 @@ class ScmCvsTest < Test::Unit::TestCase @config[:local] = "/hello/world" @config[:cvs] = "/path/to/cvs" @config[:password] = "chocolatebrownies" + @config[:now] = Time.utc(2005,8,24,12,0,0) @scm = CvsTest.new(@config) @actor = MockActor.new(@config) @log_msg = <