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