1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-08-07 03:50:08 +02:00

🔧 Keep track of unsupported (but installed) PHP versions

This commit is contained in:
2023-01-13 19:13:43 +01:00
parent 894365488a
commit 8d42e27ef6
3 changed files with 32 additions and 20 deletions

View File

@ -24,11 +24,10 @@ class PhpVersionDetectionTest: XCTestCase {
"php@5.6", // should be omitted, not supported
"php@5.4" // should be omitted, not supported
],
supported: ["7.0", "8.0", "8.1", "8.2"],
checkBinaries: false,
generateHelpers: false
)
XCTAssertEqual(outcome, ["8.0", "7.0"])
XCTAssertEqual(outcome, ["8.0", "7.0", "5.6"])
}
}