From c75c9a7799781b2de5c0e88f7c77a3c607bc7f8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Sat, 17 Aug 2019 22:31:49 +0200 Subject: [PATCH] wip --- tests/Etc/AppServiceProvider.php | 28 ++++++++++++++++++++++++++++ tests/TelescopeTest.php | 19 +++++++++++++++++++ tests/TestCase.php | 1 + 3 files changed, 48 insertions(+) create mode 100644 tests/Etc/AppServiceProvider.php 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, ]; }