From d349e499b5191abd8819e6fee073a335f272b241 Mon Sep 17 00:00:00 2001 From: Paulo Castellano Date: Tue, 12 May 2026 19:02:51 -0300 Subject: [PATCH] test: move publisher tests from Unit to Feature MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These tests use Http::fake, model factories, and DB — by Laravel/Pest convention that's a feature test, not a unit test. Moving them to the Feature suite to match the convention. No code changes. Tests still pass: 1493 passed, 2 skipped, 0 failed. --- tests/{Unit => Feature}/Services/InstagramPublisherTest.php | 0 tests/{Unit => Feature}/Services/LinkedInPublisherTest.php | 0 tests/{Unit => Feature}/Services/Social/BlueskyPublisherTest.php | 0 .../Services/Social/Concerns/HasSocialHttpClientTest.php | 0 tests/{Unit => Feature}/Services/Social/ContentSanitizerTest.php | 0 tests/{Unit => Feature}/Services/Social/FacebookPublisherTest.php | 0 .../{Unit => Feature}/Services/Social/InstagramPublisherTest.php | 0 .../Services/Social/LinkedInPagePublisherTest.php | 0 tests/{Unit => Feature}/Services/Social/LinkedInPublisherTest.php | 0 .../Services/Social/LinkedInTokenSynchronizerTest.php | 0 tests/{Unit => Feature}/Services/Social/MastodonPublisherTest.php | 0 .../{Unit => Feature}/Services/Social/PinterestPublisherTest.php | 0 tests/{Unit => Feature}/Services/Social/ThreadsPublisherTest.php | 0 tests/{Unit => Feature}/Services/Social/TikTokCreatorInfoTest.php | 0 tests/{Unit => Feature}/Services/Social/TikTokPublisherTest.php | 0 tests/{Unit => Feature}/Services/Social/XPublisherTest.php | 0 tests/{Unit => Feature}/Services/Social/YouTubePublisherTest.php | 0 tests/{Unit => Feature}/Services/XPublisherTest.php | 0 tests/{Unit => Feature}/Services/YouTubePublisherTest.php | 0 19 files changed, 0 insertions(+), 0 deletions(-) rename tests/{Unit => Feature}/Services/InstagramPublisherTest.php (100%) rename tests/{Unit => Feature}/Services/LinkedInPublisherTest.php (100%) rename tests/{Unit => Feature}/Services/Social/BlueskyPublisherTest.php (100%) rename tests/{Unit => Feature}/Services/Social/Concerns/HasSocialHttpClientTest.php (100%) rename tests/{Unit => Feature}/Services/Social/ContentSanitizerTest.php (100%) rename tests/{Unit => Feature}/Services/Social/FacebookPublisherTest.php (100%) rename tests/{Unit => Feature}/Services/Social/InstagramPublisherTest.php (100%) rename tests/{Unit => Feature}/Services/Social/LinkedInPagePublisherTest.php (100%) rename tests/{Unit => Feature}/Services/Social/LinkedInPublisherTest.php (100%) rename tests/{Unit => Feature}/Services/Social/LinkedInTokenSynchronizerTest.php (100%) rename tests/{Unit => Feature}/Services/Social/MastodonPublisherTest.php (100%) rename tests/{Unit => Feature}/Services/Social/PinterestPublisherTest.php (100%) rename tests/{Unit => Feature}/Services/Social/ThreadsPublisherTest.php (100%) rename tests/{Unit => Feature}/Services/Social/TikTokCreatorInfoTest.php (100%) rename tests/{Unit => Feature}/Services/Social/TikTokPublisherTest.php (100%) rename tests/{Unit => Feature}/Services/Social/XPublisherTest.php (100%) rename tests/{Unit => Feature}/Services/Social/YouTubePublisherTest.php (100%) rename tests/{Unit => Feature}/Services/XPublisherTest.php (100%) rename tests/{Unit => Feature}/Services/YouTubePublisherTest.php (100%) diff --git a/tests/Unit/Services/InstagramPublisherTest.php b/tests/Feature/Services/InstagramPublisherTest.php similarity index 100% rename from tests/Unit/Services/InstagramPublisherTest.php rename to tests/Feature/Services/InstagramPublisherTest.php diff --git a/tests/Unit/Services/LinkedInPublisherTest.php b/tests/Feature/Services/LinkedInPublisherTest.php similarity index 100% rename from tests/Unit/Services/LinkedInPublisherTest.php rename to tests/Feature/Services/LinkedInPublisherTest.php diff --git a/tests/Unit/Services/Social/BlueskyPublisherTest.php b/tests/Feature/Services/Social/BlueskyPublisherTest.php similarity index 100% rename from tests/Unit/Services/Social/BlueskyPublisherTest.php rename to tests/Feature/Services/Social/BlueskyPublisherTest.php diff --git a/tests/Unit/Services/Social/Concerns/HasSocialHttpClientTest.php b/tests/Feature/Services/Social/Concerns/HasSocialHttpClientTest.php similarity index 100% rename from tests/Unit/Services/Social/Concerns/HasSocialHttpClientTest.php rename to tests/Feature/Services/Social/Concerns/HasSocialHttpClientTest.php diff --git a/tests/Unit/Services/Social/ContentSanitizerTest.php b/tests/Feature/Services/Social/ContentSanitizerTest.php similarity index 100% rename from tests/Unit/Services/Social/ContentSanitizerTest.php rename to tests/Feature/Services/Social/ContentSanitizerTest.php diff --git a/tests/Unit/Services/Social/FacebookPublisherTest.php b/tests/Feature/Services/Social/FacebookPublisherTest.php similarity index 100% rename from tests/Unit/Services/Social/FacebookPublisherTest.php rename to tests/Feature/Services/Social/FacebookPublisherTest.php diff --git a/tests/Unit/Services/Social/InstagramPublisherTest.php b/tests/Feature/Services/Social/InstagramPublisherTest.php similarity index 100% rename from tests/Unit/Services/Social/InstagramPublisherTest.php rename to tests/Feature/Services/Social/InstagramPublisherTest.php diff --git a/tests/Unit/Services/Social/LinkedInPagePublisherTest.php b/tests/Feature/Services/Social/LinkedInPagePublisherTest.php similarity index 100% rename from tests/Unit/Services/Social/LinkedInPagePublisherTest.php rename to tests/Feature/Services/Social/LinkedInPagePublisherTest.php diff --git a/tests/Unit/Services/Social/LinkedInPublisherTest.php b/tests/Feature/Services/Social/LinkedInPublisherTest.php similarity index 100% rename from tests/Unit/Services/Social/LinkedInPublisherTest.php rename to tests/Feature/Services/Social/LinkedInPublisherTest.php diff --git a/tests/Unit/Services/Social/LinkedInTokenSynchronizerTest.php b/tests/Feature/Services/Social/LinkedInTokenSynchronizerTest.php similarity index 100% rename from tests/Unit/Services/Social/LinkedInTokenSynchronizerTest.php rename to tests/Feature/Services/Social/LinkedInTokenSynchronizerTest.php diff --git a/tests/Unit/Services/Social/MastodonPublisherTest.php b/tests/Feature/Services/Social/MastodonPublisherTest.php similarity index 100% rename from tests/Unit/Services/Social/MastodonPublisherTest.php rename to tests/Feature/Services/Social/MastodonPublisherTest.php diff --git a/tests/Unit/Services/Social/PinterestPublisherTest.php b/tests/Feature/Services/Social/PinterestPublisherTest.php similarity index 100% rename from tests/Unit/Services/Social/PinterestPublisherTest.php rename to tests/Feature/Services/Social/PinterestPublisherTest.php diff --git a/tests/Unit/Services/Social/ThreadsPublisherTest.php b/tests/Feature/Services/Social/ThreadsPublisherTest.php similarity index 100% rename from tests/Unit/Services/Social/ThreadsPublisherTest.php rename to tests/Feature/Services/Social/ThreadsPublisherTest.php diff --git a/tests/Unit/Services/Social/TikTokCreatorInfoTest.php b/tests/Feature/Services/Social/TikTokCreatorInfoTest.php similarity index 100% rename from tests/Unit/Services/Social/TikTokCreatorInfoTest.php rename to tests/Feature/Services/Social/TikTokCreatorInfoTest.php diff --git a/tests/Unit/Services/Social/TikTokPublisherTest.php b/tests/Feature/Services/Social/TikTokPublisherTest.php similarity index 100% rename from tests/Unit/Services/Social/TikTokPublisherTest.php rename to tests/Feature/Services/Social/TikTokPublisherTest.php diff --git a/tests/Unit/Services/Social/XPublisherTest.php b/tests/Feature/Services/Social/XPublisherTest.php similarity index 100% rename from tests/Unit/Services/Social/XPublisherTest.php rename to tests/Feature/Services/Social/XPublisherTest.php diff --git a/tests/Unit/Services/Social/YouTubePublisherTest.php b/tests/Feature/Services/Social/YouTubePublisherTest.php similarity index 100% rename from tests/Unit/Services/Social/YouTubePublisherTest.php rename to tests/Feature/Services/Social/YouTubePublisherTest.php diff --git a/tests/Unit/Services/XPublisherTest.php b/tests/Feature/Services/XPublisherTest.php similarity index 100% rename from tests/Unit/Services/XPublisherTest.php rename to tests/Feature/Services/XPublisherTest.php diff --git a/tests/Unit/Services/YouTubePublisherTest.php b/tests/Feature/Services/YouTubePublisherTest.php similarity index 100% rename from tests/Unit/Services/YouTubePublisherTest.php rename to tests/Feature/Services/YouTubePublisherTest.php