mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2025-11-08 05:30:05 +01:00
25 lines
549 B
Swift
25 lines
549 B
Swift
//
|
|
// CommandTest.swift
|
|
// PHP Monitor
|
|
//
|
|
// Created by Nico Verbruggen on 13/02/2021.
|
|
// Copyright © 2023 Nico Verbruggen. All rights reserved.
|
|
//
|
|
|
|
import Testing
|
|
|
|
struct CommandTest {
|
|
@Test func determinePhpVersion() {
|
|
let version = Command.execute(
|
|
path: Paths.php,
|
|
arguments: ["-v"],
|
|
trimNewlines: false
|
|
)
|
|
|
|
#expect(version.contains("(cli)"))
|
|
#expect(version.contains("NTS"))
|
|
#expect(version.contains("built"))
|
|
#expect(version.contains("Zend"))
|
|
}
|
|
}
|