blob: 70e6a977347528a9ad25eec7df378d1ca22d690b (
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
|
//! ref: composer/tests/Composer/Test/Command/ConfigCommandTest.php
#[test]
#[ignore = "requires ApplicationTester and TestCase::initTempComposer harness (not implemented)"]
fn test_config_updates() {
todo!()
}
#[test]
#[ignore = "requires ApplicationTester and TestCase::initTempComposer harness (not implemented)"]
fn test_config_reads() {
todo!()
}
#[test]
#[ignore = "requires ApplicationTester (getApplicationTester) harness (not implemented)"]
fn test_config_throws_for_invalid_arg_combination() {
todo!()
}
#[test]
#[ignore = "requires ApplicationTester and TestCase::initTempComposer harness (not implemented)"]
fn test_config_throws_for_invalid_severity() {
todo!()
}
#[test]
#[ignore = "requires ApplicationTester and TestCase::initTempComposer harness (not implemented)"]
fn test_config_throws_when_merging_array_with_object() {
todo!()
}
|