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