@@ -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