2007-03-01 01:39:14 -05:00
|
|
|
require "#{File.dirname(__FILE__)}/utils"
|
2007-03-04 15:11:09 -05:00
|
|
|
require 'capistrano/configuration'
|
2005-08-03 08:59:03 -04:00
|
|
|
|
2007-03-04 16:09:37 -05:00
|
|
|
# These tests are only for testing the integration of the various components
|
|
|
|
# of the Configuration class. To test specific features, please look at the
|
|
|
|
# tests under test/configuration.
|
|
|
|
|
2005-08-03 08:59:03 -04:00
|
|
|
class ConfigurationTest < Test::Unit::TestCase
|
|
|
|
def setup
|
2007-02-26 18:59:33 -05:00
|
|
|
@config = Capistrano::Configuration.new
|
2006-02-18 22:16:44 -05:00
|
|
|
end
|
|
|
|
|
2007-03-04 16:34:35 -05:00
|
|
|
def test_connections_execution_loading_namespaces_roles_and_variables_modules_should_integrate_correctly
|
|
|
|
Capistrano::SSH.expects(:connect).with { |s,c| s.host == "www.capistrano.test" && c == @config }.returns(:session)
|
|
|
|
Capistrano::Command.expects(:process).with("echo 'hello world'", [:session], :logger => @config.logger)
|
|
|
|
|
|
|
|
@config.load do
|
|
|
|
role :test, "www.capistrano.test"
|
|
|
|
set :message, "hello world"
|
|
|
|
namespace :testing do
|
|
|
|
task :example, :roles => :test do
|
|
|
|
run "echo '#{message}'"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@config.testing.example
|
2005-08-03 08:59:03 -04:00
|
|
|
end
|
|
|
|
end
|