40 lines
834 B
PHP
40 lines
834 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of tobyz/json-api-server.
|
|
*
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Tobyz\Tests\JsonApiServer\feature;
|
|
|
|
use Tobyz\Tests\JsonApiServer\AbstractTestCase;
|
|
|
|
class RelationshipLinksTest extends AbstractTestCase
|
|
{
|
|
public function setUp(): void
|
|
{
|
|
|
|
}
|
|
|
|
public function test_to_one_relationships_have_self_and_related_links_by_default()
|
|
{
|
|
$this->markTestIncomplete();
|
|
}
|
|
|
|
public function test_to_one_relationship_links_can_be_disabled()
|
|
{
|
|
$this->markTestIncomplete();
|
|
}
|
|
|
|
public function test_to_one_relationships_links_can_be_re_enabled()
|
|
{
|
|
$this->markTestIncomplete();
|
|
}
|
|
|
|
// to_many...
|
|
}
|