Sha256: 02a7d83aa347f0d74e63e5353e1cbfddb4769eb3af06e4f41d3f1ad854aeff15

Contents?: true

Size: 816 Bytes

Versions: 12

Compression:

Stored size: 816 Bytes

Contents

require_relative "../../../spec_helper"
require "kontena/cli/master/init_cloud_command"

describe Kontena::Cli::Master::InitCloudCommand do

  include ClientHelpers
  include RequirementsHelper

  mock_current_master

  let(:cloud_client) { double(:cc) }

  before(:each) do
    allow(subject).to receive(:current_account).and_return('foo')
    allow(subject).to receive(:cloud_auth?).and_return(true)
  end

  describe '#execute' do
    expect_to_require_current_master
    expect_to_require_current_master_token
  end

  it 'runs the invite self after deploy callback' do
    expect(Kontena).to receive(:run).with('cloud master add --current --force').and_return(true)
    expect_any_instance_of(Kontena::Callbacks::InviteSelfAfterDeploy).to receive(:after).and_return(true)
    subject.run(['--force'])
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
kontena-cli-1.1.6 spec/kontena/cli/master/init_cloud_command_spec.rb
kontena-cli-1.1.5 spec/kontena/cli/master/init_cloud_command_spec.rb
kontena-cli-1.1.5.rc3 spec/kontena/cli/master/init_cloud_command_spec.rb
kontena-cli-1.1.5.rc2 spec/kontena/cli/master/init_cloud_command_spec.rb
kontena-cli-1.1.5.rc1 spec/kontena/cli/master/init_cloud_command_spec.rb
kontena-cli-1.1.4 spec/kontena/cli/master/init_cloud_command_spec.rb
kontena-cli-1.1.3 spec/kontena/cli/master/init_cloud_command_spec.rb
kontena-cli-1.1.2 spec/kontena/cli/master/init_cloud_command_spec.rb
kontena-cli-1.1.2.rc2 spec/kontena/cli/master/init_cloud_command_spec.rb
kontena-cli-1.1.2.rc1 spec/kontena/cli/master/init_cloud_command_spec.rb
kontena-cli-1.1.1 spec/kontena/cli/master/init_cloud_command_spec.rb
kontena-cli-1.1.1.rc1 spec/kontena/cli/master/init_cloud_command_spec.rb