Sha256: 4e03911ea09482b4a1a9273f8c659bc7f1cc73c19307310cfa2b0df0a8655c22

Contents?: true

Size: 748 Bytes

Versions: 11

Compression:

Stored size: 748 Bytes

Contents

require 'spec_helper'

describe 'deployment with git push' do

    before :each do
      setup_sandbox
      #@config = Blazing::Config.new
      #@config.target :production, "#{@sandbox_directory}/target"
      #@config.target :staging, "#{@sandbox_directory}/staging"
      #@cli = Blazing::CLI.new
      #Blazing::Config.stub(:parse).and_return @config
    end

    after :each do
      teardown_sandbox
    end

    context 'git push <remote> <ref>' do
      it 'deploys the pushed ref'
    end

    context 'git push <remote>' do
      context 'when one ref is pushed' do
        it 'deploys the pushed ref'
      end

      context 'when multiple refs are pushed' do
        it 'deploys the currently checked out ref'
      end
    end
 end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
blazing-0.4.2 spec/blazing/integration/deployment_spec.rb
blazing-0.4.1 spec/blazing/integration/deployment_spec.rb
blazing-0.4.0 spec/blazing/integration/deployment_spec.rb
blazing-0.4.0.beta3 spec/blazing/integration/deployment_spec.rb
blazing-0.4.0.beta2 spec/blazing/integration/deployment_spec.rb
blazing-0.4.0.beta1 spec/blazing/integration/deployment_spec.rb
blazing-0.3.0 spec/blazing/integration/deployment_spec.rb
blazing-0.2.14 spec/blazing/integration/deployment_spec.rb
blazing-0.2.13 spec/blazing/integration/deployment_spec.rb
blazing-0.2.12 spec/blazing/integration/deployment_spec.rb
blazing-0.2.11 spec/blazing/integration/deployment_spec.rb