From cdf422bea84b2b327c976df58717c7b9a14963eb Mon Sep 17 00:00:00 2001 From: Ryan Chandler Date: Fri, 9 Dec 2022 02:14:09 +0000 Subject: [PATCH] chore: add wordpress to third party tests --- .github/workflows/third-party-tests.yml | 1 + tests/third_party_tests.rs | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/third-party-tests.yml b/.github/workflows/third-party-tests.yml index 928c3f3..1280bae 100644 --- a/.github/workflows/third-party-tests.yml +++ b/.github/workflows/third-party-tests.yml @@ -22,6 +22,7 @@ jobs: - 'spiral' - 'symfony_polyfill' - 'composer' + - 'wordpress' steps: - name: checkout diff --git a/tests/third_party_tests.rs b/tests/third_party_tests.rs index 8b0f5e9..827b464 100644 --- a/tests/third_party_tests.rs +++ b/tests/third_party_tests.rs @@ -124,6 +124,17 @@ fn third_party_9_composer() { ); } +#[test] +fn third_party_10_wordpress() { + test_repository( + "wordpress", + "https://github.com/WordPress/WordPress", + "master", + &["wp-admin", "wp-content", "wp-includes"], + &[] + ); +} + fn test_repository( name: &str, repository: &str,