We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6a86d1 commit ba51be1Copy full SHA for ba51be1
spec/slack/web/api/mixins/conversations_spec.rb
@@ -32,6 +32,7 @@
32
end
33
34
it 'translates a channel that starts with a #' do
35
+ expect(conversations).to receive(:conversations_list).with(limit: 1000)
36
expect(conversations.conversations_id(channel: '#general')).to(
37
eq('ok' => true, 'channel' => { 'id' => 'CDEADBEEF' })
38
)
spec/slack/web/api/mixins/users_spec.rb
@@ -31,6 +31,7 @@
31
it 'translates a user that starts with a @' do
+ expect(users).to receive(:users_list).with(limit: 100)
expect(users.users_id(user: '@aws')).to eq('ok' => true, 'user' => { 'id' => 'UDEADBEEF' })
0 commit comments