hubot_service_spec.rb 526 Bytes
describe NotificationServices::HubotService, type: 'model' do
  it "it should send a notification to Hubot" do
    # setup
    notice = Fabricate :notice
    notification_service = Fabricate :hubot_notification_service, app: notice.app
    problem = notice.problem

    # faraday stubbing
    expect(HTTParty).to receive(:post).with(notification_service.api_token, body: { message: an_instance_of(String), room: notification_service.room_id }).and_return(true)

    notification_service.create_notification(problem)
  end
end