hoiio_service_spec.rb
535 Bytes
describe NotificationService::HoiioService, type: 'model' do
it "it should send a notification to hoiio" do
# setup
notice = Fabricate :notice
notification_service = Fabricate :hoiio_notification_service, :app => notice.app
problem = notice.problem
# hoi stubbing
sms = double('HoiioService')
allow(Hoi::SMS).to receive(:new).and_return(sms)
allow(sms).to receive(:send).and_return(true)
#assert
expect(sms).to receive(:send)
notification_service.create_notification(problem)
end
end