A Slack Bot that pulls Pixiv information and posts the full image(s) into Slack, with iOS shortcuts.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

15 lines
499 B

require 'spec_helper'
describe SlackRubyBot::Commands::Unknown do
def app
SlackRubyBot::App.new
end
let(:client) { app.send(:client) }
it 'invalid command' do
expect(message: "#{SlackRubyBot.config.user} foobar").to respond_with_slack_message("Sorry <@user>, I don't understand that command!")
end
it 'does not respond to sad face' do
expect(SlackRubyBot::Commands::Base).to_not receive(:send_message)
SlackRubyBot::App.new.send(:message, client, text: ':((')
end
end