Sha256: cc76169dcf8b271ec5e56f92a1c6bc1393a60c8cfa04de769f21b0688e44386a

Contents?: true

Size: 1.39 KB

Versions: 12

Compression:

Stored size: 1.39 KB

Contents

# This file was auto-generated by lib/tasks/web.rake

require 'spec_helper'

RSpec.describe Slack::Web::Api::Endpoints::Oauth do
  let(:client) { Slack::Web::Client.new }
  context 'oauth_access' do
    it 'requires client_id' do
      expect { client.oauth_access(client_secret: '33fea0113f5b1', code: 'ccdaa72ad') }.to raise_error ArgumentError, /Required arguments :client_id missing/
    end
    it 'requires client_secret' do
      expect { client.oauth_access(client_id: '4b39e9-752c4', code: 'ccdaa72ad') }.to raise_error ArgumentError, /Required arguments :client_secret missing/
    end
    it 'requires code' do
      expect { client.oauth_access(client_id: '4b39e9-752c4', client_secret: '33fea0113f5b1') }.to raise_error ArgumentError, /Required arguments :code missing/
    end
  end
  context 'oauth_token' do
    it 'requires client_id' do
      expect { client.oauth_token(client_secret: '33fea0113f5b1', code: 'ccdaa72ad') }.to raise_error ArgumentError, /Required arguments :client_id missing/
    end
    it 'requires client_secret' do
      expect { client.oauth_token(client_id: '4b39e9-752c4', code: 'ccdaa72ad') }.to raise_error ArgumentError, /Required arguments :client_secret missing/
    end
    it 'requires code' do
      expect { client.oauth_token(client_id: '4b39e9-752c4', client_secret: '33fea0113f5b1') }.to raise_error ArgumentError, /Required arguments :code missing/
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
slack-ruby-client-0.14.4 spec/slack/web/api/endpoints/oauth_spec.rb
slack-ruby-client-0.14.3 spec/slack/web/api/endpoints/oauth_spec.rb
slack-ruby-client-0.14.2 spec/slack/web/api/endpoints/oauth_spec.rb
slack-ruby-client-0.14.1 spec/slack/web/api/endpoints/oauth_spec.rb
slack-ruby-client-0.14.0 spec/slack/web/api/endpoints/oauth_spec.rb
slack-ruby-client-0.13.1 spec/slack/web/api/endpoints/oauth_spec.rb
slack-ruby-client-0.13.0 spec/slack/web/api/endpoints/oauth_spec.rb
slack-ruby-client-0.12.0 spec/slack/web/api/endpoints/oauth_spec.rb
slack-ruby-client-0.11.1 spec/slack/web/api/endpoints/oauth_spec.rb
slack-ruby-client-0.11.0 spec/slack/web/api/endpoints/oauth_spec.rb
slack-ruby-client-0.10.0 spec/slack/web/api/endpoints/oauth_spec.rb
slack-ruby-client-0.9.1 spec/slack/web/api/endpoints/oauth_spec.rb