blob: a0586abf00d19f68aaf3cf1344ed2d03dc3a7dbc (
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 ApplicationTester and TestCase::initTempComposer/createComposerLock/createInstalledJson harness (not implemented)"]
fn test_install_command_errors() {
todo!()
}
#[test]
#[ignore = "requires ApplicationTester and TestCase::initTempComposer/createComposerLock harness (not implemented)"]
fn test_install_from_empty_vendor() {
todo!()
}
#[test]
#[ignore = "requires ApplicationTester and TestCase::initTempComposer/createComposerLock harness (not implemented)"]
fn test_install_from_empty_vendor_no_dev() {
todo!()
}
#[test]
#[ignore = "requires ApplicationTester and TestCase::initTempComposer/createComposerLock/createInstalledJson harness (not implemented)"]
fn test_install_new_packages_with_existing_partial_vendor() {
todo!()
}
|