Sha256: 99a2ff07da93748e1281930eb403a6d189fd9ab44387adf097a00d4ccf056870
Contents?: true
Size: 466 Bytes
Versions: 3
Compression:
Stored size: 466 Bytes
Contents
require 'spec_helper' describe SlackRubyBot::Commands do let! :command do Class.new(SlackRubyBot::Commands::Base) do command 'empty_text' def self.call(client, data, _match) client.say(channel: data.channel) end end end it 'sends default text' do allow(Giphy).to receive(:random) expect(message: "#{SlackRubyBot.config.user} empty_text", channel: 'channel', user: 'user').to respond_with_slack_message('') end end
Version data entries
3 entries across 3 versions & 1 rubygems