mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-23 21:16:02 +03:00
29 lines
581 B
PHP
29 lines
581 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* 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\DeleteResponse;
|
||
|
use Mailgun\Tests\Model\BaseModelTest;
|
||
|
|
||
|
class DeleteResponseTest extends BaseModelTest
|
||
|
{
|
||
|
public function testCreate()
|
||
|
{
|
||
|
$json =
|
||
|
<<<'JSON'
|
||
|
{
|
||
|
"message": "Domain has been deleted"
|
||
|
}
|
||
|
JSON;
|
||
|
$model = DeleteResponse::create(json_decode($json, true));
|
||
|
$this->assertNotEmpty($model->getMessage());
|
||
|
}
|
||
|
}
|