diff options
Diffstat (limited to 'crates/shirabe/tests/all_functional_test.rs')
| -rw-r--r-- | crates/shirabe/tests/all_functional_test.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/crates/shirabe/tests/all_functional_test.rs b/crates/shirabe/tests/all_functional_test.rs index 88ab725..99a7ad0 100644 --- a/crates/shirabe/tests/all_functional_test.rs +++ b/crates/shirabe/tests/all_functional_test.rs @@ -1 +1,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); |
