Sha256: 3a3b36fdb7ba26f229296315e08e2c0f4e4045467306b357c20596f1f8ce6ad3
Contents?: true
Size: 590 Bytes
Versions: 3
Compression:
Stored size: 590 Bytes
Contents
# frozen_string_literal: true # This file was auto-generated by lib/tasks/web.rake require 'spec_helper' RSpec.describe Slack::Web::Api::Endpoints::AdminTeams do let(:client) { Slack::Web::Client.new } context 'admin.teams_create' do it 'requires team_domain' do expect { client.admin_teams_create(team_name: '') }.to raise_error ArgumentError, /Required arguments :team_domain missing/ end it 'requires team_name' do expect { client.admin_teams_create(team_domain: '') }.to raise_error ArgumentError, /Required arguments :team_name missing/ end end end
Version data entries
3 entries across 3 versions & 1 rubygems