blob: 1774721f4db168d7851b4ba33fce114837a8afd6 (
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/InstallCommandTest.php
#[test]
#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
fn test_install_command_errors() {
todo!()
}
#[test]
#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
fn test_install_from_empty_vendor() {
todo!()
}
#[test]
#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
fn test_install_from_empty_vendor_no_dev() {
todo!()
}
#[test]
#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
fn test_install_new_packages_with_existing_partial_vendor() {
todo!()
}
|