blob: 99a7ad0538387576270882f7d4e3e1f29b6dff2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//! ref: composer/tests/Composer/Test/AllFunctionalTest.php
// These build the composer.phar and run the .test integration fixtures by invoking the
// composer binary as a subprocess; the phar build and functional-test harness are not
// ported.
macro_rules! stub {
($name:ident) => {
#[test]
#[ignore = "not yet ported (builds composer.phar and runs the functional .test fixtures via the binary)"]
fn $name() {
todo!()
}
};
}
stub!(test_build_phar);
stub!(test_integration);
|