Sha256: 693c5110791b04081f3aac88509b0caec83c9b15d31891549da93c8b1431355c

Contents?: true

Size: 1.01 KB

Versions: 9

Compression:

Stored size: 1.01 KB

Contents

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

require 'spec_helper'

RSpec.describe Slack::Web::Api::Endpoints::Mpim do
  let(:client) { Slack::Web::Client.new }
  context 'mpim_close' do
    it 'requires channel' do
      expect { client.mpim_close }.to raise_error ArgumentError, /Required arguments :channel missing/
    end
  end
  context 'mpim_history' do
    it 'requires channel' do
      expect { client.mpim_history }.to raise_error ArgumentError, /Required arguments :channel missing/
    end
  end
  context 'mpim_mark' do
    it 'requires channel' do
      expect { client.mpim_mark(ts: '1234567890.123456') }.to raise_error ArgumentError, /Required arguments :channel missing/
    end
    it 'requires ts' do
      expect { client.mpim_mark(channel: 'G1234567890') }.to raise_error ArgumentError, /Required arguments :ts missing/
    end
  end
  context 'mpim_open' do
    it 'requires users' do
      expect { client.mpim_open }.to raise_error ArgumentError, /Required arguments :users missing/
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
slack-ruby-client-0.7.7 spec/slack/web/api/endpoints/mpim_spec.rb
slack-ruby-client-0.7.6 spec/slack/web/api/endpoints/mpim_spec.rb
slack-ruby-client-0.7.5 spec/slack/web/api/endpoints/mpim_spec.rb
slack-ruby-client-0.7.4 spec/slack/web/api/endpoints/mpim_spec.rb
slack-ruby-client-0.7.3 spec/slack/web/api/endpoints/mpim_spec.rb
slack-ruby-client-0.7.2 spec/slack/web/api/endpoints/mpim_spec.rb
slack-ruby-client-0.7.1 spec/slack/web/api/endpoints/mpim_spec.rb
slack-ruby-client-0.7.0 spec/slack/web/api/endpoints/mpim_spec.rb
slack-ruby-client-0.6.0 spec/slack/web/api/endpoints/mpim_spec.rb