mailgun-php/tests/Model/Domain/UnsubscribeTrackingTest.php
2020-10-15 22:00:13 +01:00

35 lines
801 B
PHP

<?php
declare(strict_types=1);
/*
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace Mailgun\Tests\Model\Domain;
use Mailgun\Model\Domain\UnsubscribeTracking;
use Mailgun\Tests\Model\BaseModelTest;
class UnsubscribeTrackingTest extends BaseModelTest
{
public function testCreate()
{
$json =
<<<'JSON'
{
"active": true,
"html_footer": "<s>Test<\/s>",
"text_footer": "Test"
}
JSON;
$model = UnsubscribeTracking::create(json_decode($json, true));
$this->assertTrue($model->isActive());
$this->assertEquals('<s>Test</s>', $model->getHtmlFooter());
$this->assertEquals('Test', $model->getTextFooter());
}
}