blob: 4e9a49cd8c63d7a18d396dad97a03cd3e1d340fe (
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
#[ignore = "missing TestCase::init_temp_composer, create_installed_json, create_composer_lock, and get_application_tester (ApplicationTester) infrastructure"]
#[test]
fn test_bump() {
todo!()
}
#[ignore = "missing TestCase::init_temp_composer and get_application_tester (ApplicationTester) infrastructure"]
#[test]
fn test_bump_fails_on_non_existing_composer_file() {
todo!()
}
#[ignore = "missing TestCase::init_temp_composer and get_application_tester (ApplicationTester) infrastructure"]
#[test]
fn test_bump_fails_on_write_error_to_composer_file() {
todo!()
}
|