From e40ae3649d62a933211e81d8ac773fdd86ff1dfb Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 21 Feb 2026 20:54:29 +0900 Subject: test(cli): add end-to-end integration tests for CLI commands Add 23 integration tests using assert_cmd and predicates covering about, validate, show, licenses, install, config, init, and dump-autoload commands with shared test helpers and fixture projects. Co-Authored-By: Claude Opus 4.6 --- crates/mozart/tests/fixtures/with_dev_deps/composer.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 crates/mozart/tests/fixtures/with_dev_deps/composer.json (limited to 'crates/mozart/tests/fixtures/with_dev_deps/composer.json') diff --git a/crates/mozart/tests/fixtures/with_dev_deps/composer.json b/crates/mozart/tests/fixtures/with_dev_deps/composer.json new file mode 100644 index 0000000..09126f2 --- /dev/null +++ b/crates/mozart/tests/fixtures/with_dev_deps/composer.json @@ -0,0 +1,12 @@ +{ + "name": "test/dev-project", + "description": "A project with dev dependencies", + "license": "MIT", + "require": { + "php": ">=8.1", + "psr/log": "^3.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + } +} -- cgit v1.3.1