1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 12:54:05 +00:00
tenancy/tests/CacheManagerTest.php
2019-02-07 21:44:47 +01:00

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');
}
}