diff --git a/tests/Etc/AppServiceProvider.php b/tests/Etc/AppServiceProvider.php new file mode 100644 index 00000000..d09fd8c0 --- /dev/null +++ b/tests/Etc/AppServiceProvider.php @@ -0,0 +1,28 @@ +markTestIncomplete(); + } + + /** @test */ + public function tags_are_not_added_on_non_tenant_routes() + { + // AppSP ones should be still added + $this->markTestIncomplete(); + } + + /** @test */ + public function tags_are_merged_with_users_tags() + { + $this->markTestIncomplete(); + } } diff --git a/tests/TestCase.php b/tests/TestCase.php index b4f39982..6b206ccf 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -123,6 +123,7 @@ abstract class TestCase extends \Orchestra\Testbench\TestCase protected function getPackageProviders($app) { return [ + \Stancl\Tenancy\Tests\Etc\AppServiceProvider::class, \Stancl\Tenancy\TenancyServiceProvider::class, ]; }