From 6b1864a048ffb9343d4658ec11c32494d7f038db Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Tue, 30 Aug 2005 20:53:32 +0000 Subject: Move switchtower to the tools directory, to decouple it from rails git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2074 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- switchtower/test/scm/cvs_test.rb | 164 -------------------------------- switchtower/test/scm/subversion_test.rb | 100 ------------------- 2 files changed, 264 deletions(-) delete mode 100644 switchtower/test/scm/cvs_test.rb delete mode 100644 switchtower/test/scm/subversion_test.rb (limited to 'switchtower/test/scm') diff --git a/switchtower/test/scm/cvs_test.rb b/switchtower/test/scm/cvs_test.rb deleted file mode 100644 index 4532870826..0000000000 --- a/switchtower/test/scm/cvs_test.rb +++ /dev/null @@ -1,164 +0,0 @@ -$:.unshift File.dirname(__FILE__) + "/../../lib" - -require File.dirname(__FILE__) + "/../utils" -require 'test/unit' -require 'switchtower/scm/cvs' - -class ScmCvsTest < Test::Unit::TestCase - class CvsTest < SwitchTower::SCM::Cvs - attr_accessor :story - attr_reader :last_path - - def cvs_log(path) - @last_path = path - story.shift - end - end - - class MockChannel - attr_reader :sent_data - - def send_data(data) - @sent_data ||= [] - @sent_data << data - end - - def [](name) - "value" - end - end - - class MockActor - attr_reader :command - attr_reader :channels - attr_accessor :story - - def initialize(config) - @config = config - end - - def run(command) - @command = command - @channels ||= [] - @channels << MockChannel.new - 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 - end - - def setup - @config = MockConfiguration.new - @config[:repository] = ":ext:joetester@rubyforge.org:/hello/world" - @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 = <