mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 19:14:04 +00:00
24 lines
591 B
PHP
24 lines
591 B
PHP
<?php
|
|
|
|
namespace Stancl\Tenancy\Tests;
|
|
|
|
class CacheManagerTest extends TestCase
|
|
{
|
|
/** @test */
|
|
public function default_tag_is_automatically_applied()
|
|
{
|
|
$this->markTestIncomplete('see BootstrapsTenancyTest@cache_is_tagged');
|
|
}
|
|
|
|
/** @test */
|
|
public function tags_are_merged_when_array_is_passed()
|
|
{
|
|
$this->markTestIncomplete('see BootstrapsTenancyTest@cache_is_tagged');
|
|
}
|
|
|
|
/** @test */
|
|
public function tags_are_merged_when_string_is_passed()
|
|
{
|
|
$this->markTestIncomplete('see BootstrapsTenancyTest@cache_is_tagged');
|
|
}
|
|
}
|