blob: 8c420e55e4a84e3d6b580a6a257b5b7b6aa0f010 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//! ref: composer/tests/Composer/Test/Platform/HhvmDetectorTest.php
#[test]
#[ignore = "skipped unless running under HHVM (HHVM_VERSION_ID defined), which never holds here"]
fn test_hhvm_version_when_executing_in_hhvm() {
todo!()
}
#[test]
#[ignore = "needs an installed hhvm executable plus ExecutableFinder/ProcessExecutor; skipped in PHP when hhvm is absent"]
fn test_hhvm_version_when_executing_in_php() {
todo!()
}
|