luyatests\core\components\MailTest::testLayoutWithoutWrapper PHP Method

testLayoutWithoutWrapper() public method

    public function testLayoutWithoutWrapper()
    {
        $mail = new Mail();
        $mail->layout = false;
        $mail->setBody('CONTENT');
        $this->assertEquals('CONTENT', $mail->mailer->Body);
    }