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.
 

19 lines
425 B

require 'spec_helper'
describe RSpec do
let! :command do
Class.new(SlackRubyBot::Commands::Base) do
command 'raise'
def self.call(_client, _data, match)
fail ArgumentError, match[:command]
end
end
end
def app
SlackRubyBot::App.new
end
it 'respond_with_error' do
expect(message: "#{SlackRubyBot.config.user} raise").to respond_with_error(ArgumentError, 'raise')
end
end