mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-23 13:06:02 +03:00
a4aba16061
* Added a way to get attachments * Added some tests * cs * minor * Removed declare_strict * Typos * Bugfixes * Fixed bugs
42 lines
910 B
PHP
42 lines
910 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\IndexResponse;
|
|
use Mailgun\Tests\Model\BaseModelTest;
|
|
|
|
class IndexResponseTest extends BaseModelTest
|
|
{
|
|
public function testCreate()
|
|
{
|
|
$json =
|
|
<<<'JSON'
|
|
{
|
|
"total_count": 1,
|
|
"items": [
|
|
{
|
|
"created_at": "Wed, 10 Jul 2013 19:26:52 GMT",
|
|
"smtp_login": "postmaster@samples.mailgun.org",
|
|
"name": "samples.mailgun.org",
|
|
"smtp_password": "4rtqo4p6rrx9",
|
|
"wildcard": true,
|
|
"spam_action": "disabled",
|
|
"state": "active"
|
|
}
|
|
]
|
|
}
|
|
|
|
JSON;
|
|
$model = IndexResponse::create(json_decode($json, true));
|
|
$this->assertEquals(1, $model->getTotalCount());
|
|
$this->assertCount(1, $model->getDomains());
|
|
}
|
|
}
|