From 19e9fdf01bee5ee503a62ac332aaeacf02ff6196 Mon Sep 17 00:00:00 2001 From: Ryan Chandler Date: Fri, 9 Dec 2022 02:11:44 +0000 Subject: [PATCH] chore: add composer 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 3fb9ac8..928c3f3 100644 --- a/.github/workflows/third-party-tests.yml +++ b/.github/workflows/third-party-tests.yml @@ -21,6 +21,7 @@ jobs: - 'mezzio' - 'spiral' - 'symfony_polyfill' + - 'composer' steps: - name: checkout diff --git a/tests/third_party_tests.rs b/tests/third_party_tests.rs index 4bf9154..8b0f5e9 100644 --- a/tests/third_party_tests.rs +++ b/tests/third_party_tests.rs @@ -113,6 +113,17 @@ fn third_party_8_symfony_polyfill() { ); } +#[test] +fn third_party_9_composer() { + test_repository( + "composer", + "https://github.com/composer/composer", + "main", + &["src", "tests"], + &[] + ); +} + fn test_repository( name: &str, repository: &str,