! should handle hipchat notifications only
no handle([array:1]) matcher found for
[obj:Namshi\Notificator\Notification\Handler\HipChat].
what to do in this case???
/**
* @param \Namshi\Notificator\Notification\HipChat\HipChatNotificationInterface $hipChatNotification
* @param \Namshi\Notificator\Notification\Email\EmailNotificationInterface $otherNotification
*/
function it_should_handle_hipchat_notifications_only($hipChatNotification, $otherNotification)
{
$this->shouldHandle($hipChatNotification)->shouldReturn(true);
$this->shouldHandle($otherNotification)->shouldReturn(false);
}