blob: b0e1b974bfbe5436e2a13d4123f4c8a0f86e2037 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//! ref: composer/tests/Composer/Test/Command/ConfigCommandTest.php
macro_rules! stub {
($name:ident) => {
#[test]
#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
fn $name() {
todo!()
}
};
}
stub!(test_config_updates);
stub!(test_config_reads);
stub!(test_config_throws_for_invalid_arg_combination);
stub!(test_config_throws_for_invalid_severity);
stub!(test_config_throws_when_merging_array_with_object);
|