Sha256: e3e4368d6658d749c329bafe48135dfba7f7f300eff50310b9d54ec40d43537c

Contents?: true

Size: 523 Bytes

Versions: 8

Compression:

Stored size: 523 Bytes

Contents

require 'utils'
require 'capistrano/configuration'

class RecipesTest < Test::Unit::TestCase

  def setup
    @config = Capistrano::Configuration.new
    @config.stubs(:logger).returns(stub_everything)
  end

  def test_current_releases_does_not_cause_error_on_dry_run
    @config.dry_run = true
    @config.load 'deploy'
    @config.load do
      set :application, "foo"
      task :dry_run_test do
        fetch :current_release
      end
    end

    assert_nothing_raised do
      @config.dry_run_test
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
capistrano-2.14.2 test/recipes_test.rb
capistrano-2.14.1 test/recipes_test.rb
capistrano-2.13.5 test/recipes_test.rb
capistrano-2.12.0 test/recipes_test.rb
capistrano-2.11.2 test/recipes_test.rb
capistrano-2.9.0 test/recipes_test.rb
capistrano-2.8.0 test/recipes_test.rb
capistrano-2.7.0 test/recipes_test.rb