1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-11-08 13:30:06 +01:00

♻️ Migrate more tests to Swift Testing

This commit is contained in:
2025-09-29 16:31:30 +02:00
parent 9c9720de42
commit 5b27d9f0ea
18 changed files with 330 additions and 364 deletions

View File

@@ -8,11 +8,8 @@
import Testing
@Suite("Commands")
struct CommandTest {
@Test
func determinePhpVersion() {
@Test func determinePhpVersion() {
let version = Command.execute(
path: Paths.php,
arguments: ["-v"],
@@ -24,5 +21,4 @@ struct CommandTest {
#expect(version.contains("built"))
#expect(version.contains("Zend"))
}
}