laravel-websockets/tests/HttpApi/FetchUsersReplicationTest.php

26 lines
461 B
PHP
Raw Normal View History

<?php
namespace BeyondCode\LaravelWebSockets\Tests\HttpApi;
2020-08-14 06:43:47 +00:00
use BeyondCode\LaravelWebSockets\Tests\TestCase;
class FetchUsersReplicationTest extends TestCase
{
2020-08-14 12:35:36 +00:00
/**
* {@inheritdoc}
*/
public function setUp(): void
{
parent::setUp();
$this->runOnlyOnRedisReplication();
}
2020-08-14 17:26:55 +00:00
public function test_not_implemented()
{
$this->markTestIncomplete(
'Not yet implemented tests.'
);
}
}