Jobby\Tests\BackgroundJobTest::testNotSendMailOnMissingRecipients PHP Method

testNotSendMailOnMissingRecipients() public method

    public function testNotSendMailOnMissingRecipients()
    {
        $helper = $this->getMock('Jobby\\Helper', ['sendMail']);
        $helper->expects($this->never())->method('sendMail');
        $this->runJob(['closure' => function () {
            return false;
        }, 'recipients' => ''], $helper);
    }