blob: e1dfe20d42188fa138ac2a7fac24c4871df68765 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//! ref: composer/tests/Composer/Test/Command/LicensesCommandTest.php
macro_rules! stub {
($name:ident) => {
#[test]
#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
fn $name() {
todo!()
}
};
}
stub!(test_basic_run);
stub!(test_no_dev);
stub!(test_format_json);
stub!(test_format_summary);
stub!(test_format_unknown);
stub!(test_locked);
stub!(test_locked_no_dev);
stub!(test_locked_without_lock_file);
|