blob: 88449f139cdcf4ccce1f171bd78881afd49e4c03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
//! ref: composer/tests/Composer/Test/Util/ProcessExecutorTest.php
// These run real subprocesses (capturing output/stderr/timeout) and assert ProcessExecutor's
// password hiding, line splitting and argument escaping; the subprocess execution and mocked
// IO are not ported.
#[test]
#[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"]
fn test_execute_captures_output() {
todo!()
}
#[test]
#[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"]
fn test_execute_outputs_if_not_captured() {
todo!()
}
#[test]
#[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"]
fn test_use_io_is_not_null_and_if_not_captured() {
todo!()
}
#[test]
#[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"]
fn test_execute_captures_stderr() {
todo!()
}
#[test]
#[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"]
fn test_timeout() {
todo!()
}
#[test]
#[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"]
fn test_hide_passwords() {
todo!()
}
#[test]
#[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"]
fn test_doesnt_hide_ports() {
todo!()
}
#[test]
#[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"]
fn test_split_lines() {
todo!()
}
#[test]
#[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"]
fn test_console_io_does_not_format_symfony_console_style() {
todo!()
}
#[test]
#[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"]
fn test_execute_async_cancel() {
todo!()
}
#[test]
#[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"]
fn test_escape_argument() {
todo!()
}
|