1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 12:54:05 +00:00

Add more tests

This commit is contained in:
Samuel Štancl 2019-02-07 21:44:47 +01:00
parent 18ce4577bf
commit fceddb8c4d
5 changed files with 87 additions and 3 deletions

View file

@ -0,0 +1,24 @@
<?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');
}
}