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.
|
require 'spec_helper'
|
|
|
|
describe SlackRubyBot::Commands::Unknown do
|
|
def app
|
|
SlackMathbot::App.new
|
|
end
|
|
let(:client) { app.send(:client) }
|
|
it 'invalid command' do
|
|
expect(message: 'mathbot 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)
|
|
SlackMathbot::App.new.send(:message, client, text: ':((')
|
|
end
|
|
end
|