Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit 52fc634

Browse files
committed
Remove Service Provider Test for Packages
1 parent 117d948 commit 52fc634

File tree

1 file changed

+0
-43
lines changed

1 file changed

+0
-43
lines changed

tests/Feature/ServiceProviderTest.php

Lines changed: 0 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -19,47 +19,4 @@ public function it_has_app_service_provider()
1919
$this->assertTrue(in_array($provider, $config));
2020
}
2121
}
22-
23-
/** @test */
24-
public function it_has_cleanique_coders_packages()
25-
{
26-
$config = config('app.providers');
27-
$providers = [
28-
\CleaniqueCoders\Blueprint\Macro\BlueprintMacroServiceProvider::class,
29-
\CleaniqueCoders\Profile\ProfileServiceProvider::class,
30-
\CleaniqueCoders\ArtisanMakers\ArtisanMakersServiceProvider::class,
31-
];
32-
foreach ($providers as $provider) {
33-
$this->assertTrue(in_array($provider, $config));
34-
}
35-
}
36-
37-
/** @test */
38-
public function it_has_spatie_packages()
39-
{
40-
$config = config('app.providers');
41-
$providers = [
42-
\Spatie\Permission\PermissionServiceProvider::class,
43-
\Spatie\Analytics\AnalyticsServiceProvider::class,
44-
\Spatie\Menu\Laravel\MenuServiceProvider::class,
45-
\Spatie\GoogleCalendar\GoogleCalendarServiceProvider::class,
46-
\Spatie\Html\HtmlServiceProvider::class,
47-
];
48-
foreach ($providers as $provider) {
49-
$this->assertTrue(in_array($provider, $config));
50-
}
51-
}
52-
53-
/** @test */
54-
public function it_has_other_packages()
55-
{
56-
$config = config('app.providers');
57-
$providers = [
58-
\Softon\SweetAlert\SweetAlertServiceProvider::class,
59-
\DaveJamesMiller\Breadcrumbs\BreadcrumbsServiceProvider::class,
60-
];
61-
foreach ($providers as $provider) {
62-
$this->assertTrue(in_array($provider, $config));
63-
}
64-
}
6522
}

0 commit comments

Comments
 (0)