Sha256: 5f0863c6d3844c47d085f321e7001998dc72fa8641249b5d2eed3ffc5d9dd170
Contents?: true
Size: 695 Bytes
Versions: 28
Compression:
Stored size: 695 Bytes
Contents
require_relative "../../../../spec_helper" require 'kontena/cli/master/users_command' require 'kontena/cli/master/users/invite_command' describe Kontena::Cli::Master::Users::InviteCommand do include ClientHelpers let(:subject) do described_class.new(File.basename($0)) end describe "#invite" do it 'makes invitation request for all given users' do expect(client).to receive(:post).with("/oauth2/authorize", {email: 'john@example.org', response_type: "invite"}).once expect(client).to receive(:post).with("/oauth2/authorize", {email: 'jane@example.org', response_type: "invite"}).once subject.run(['john@example.org', 'jane@example.org']) end end end
Version data entries
28 entries across 28 versions & 1 rubygems