blob: a4b73586d475e496f75080bf18f4c0e90c6a1f15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//! ref: composer/tests/Composer/Test/Command/SelfUpdateCommandTest.php
#[test]
#[ignore = "requires the ApplicationTester harness, which is not yet ported"]
fn test_successful_update() {
todo!()
}
#[test]
#[ignore = "requires the ApplicationTester harness, which is not yet ported"]
fn test_update_to_specific_version() {
todo!()
}
#[test]
#[ignore = "requires the ApplicationTester harness, which is not yet ported"]
fn test_update_with_invalid_option_throws_exception() {
todo!()
}
#[test]
#[ignore = "requires the ApplicationTester harness, which is not yet ported"]
fn test_update_to_different_channel() {
todo!()
}
|