From b2deee5df926791bdca96c4210b61a5d78e0239d Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Thu, 14 Nov 2024 15:06:20 -0400 Subject: [PATCH] test: remove install test --- tests/Commands/InstallTest.php | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 tests/Commands/InstallTest.php diff --git a/tests/Commands/InstallTest.php b/tests/Commands/InstallTest.php deleted file mode 100644 index 19f4b710..00000000 --- a/tests/Commands/InstallTest.php +++ /dev/null @@ -1,20 +0,0 @@ -artisan('hearth:install') - ->expectsConfirmation('Do you want to add support for an additional locale?', 'yes') - ->expectsQuestion('Choose a locale', 'Welsh') - ->expectsOutput('Welsh added to locales!') - ->expectsConfirmation('Do you want to add support for an additional locale?', 'yes') - ->expectsQuestion('Choose a locale', 'fa') - ->expectsOutput('Persian added to locales!') - ->expectsConfirmation('Do you want to add support for an additional locale?', 'yes') - ->expectsQuestion('Choose a locale', 'Dwarvish') - ->expectsOutput('You entered an invalid locale code. Please try again, or type "no" to proceed without adding more locales.') - ->expectsConfirmation('Do you want to add support for an additional locale?', 'yes') - ->expectsQuestion('Choose a locale', '') - ->expectsOutput('You entered an invalid locale code. Please try again, or type "no" to proceed without adding more locales.') - ->expectsConfirmation('Do you want to add support for an additional locale?', 'no') - ->assertExitCode(0); -});