# frozen_string_literal: true # This file was auto-generated by lib/tasks/web.rake require 'spec_helper' RSpec.describe Slack::Web::Api::Endpoints::Pins do let(:client) { Slack::Web::Client.new } context 'pins_add' do it 'requires channel' do expect { client.pins_add }.to raise_error ArgumentError, /Required arguments :channel missing/ end end context 'pins_list' do it 'requires channel' do expect { client.pins_list }.to raise_error ArgumentError, /Required arguments :channel missing/ end end context 'pins_remove' do it 'requires channel' do expect { client.pins_remove }.to raise_error ArgumentError, /Required arguments :channel missing/ end end end