blob: 6bfe832cc81d638fdf7bfa66fc6d275a5a76f93e (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
//! ref: composer/tests/Composer/Test/Command/LicensesCommandTest.php
fn set_up() {
// Builds the temp project and installed.json/composer.lock fixtures via
// initTempComposer/createInstalledJson/createComposerLock, none of which are ported yet.
todo!()
}
#[test]
#[ignore = "missing TestCase::init_temp_composer / create_installed_json / create_composer_lock and get_application_tester (ApplicationTester) infrastructure"]
fn test_basic_run() {
set_up();
todo!()
}
#[test]
#[ignore = "missing TestCase::init_temp_composer / create_installed_json / create_composer_lock and get_application_tester (ApplicationTester) infrastructure"]
fn test_no_dev() {
set_up();
todo!()
}
#[test]
#[ignore = "missing TestCase::init_temp_composer / create_installed_json / create_composer_lock and get_application_tester (ApplicationTester) infrastructure"]
fn test_format_json() {
set_up();
todo!()
}
#[test]
#[ignore = "missing TestCase::init_temp_composer / create_installed_json / create_composer_lock and get_application_tester (ApplicationTester) infrastructure"]
fn test_format_summary() {
set_up();
todo!()
}
#[test]
#[ignore = "missing TestCase::init_temp_composer / create_installed_json / create_composer_lock and get_application_tester (ApplicationTester) infrastructure"]
fn test_format_unknown() {
set_up();
todo!()
}
#[test]
#[ignore = "missing TestCase::init_temp_composer / create_installed_json / create_composer_lock and get_application_tester (ApplicationTester) infrastructure"]
fn test_locked() {
set_up();
todo!()
}
#[test]
#[ignore = "missing TestCase::init_temp_composer / create_installed_json / create_composer_lock and get_application_tester (ApplicationTester) infrastructure"]
fn test_locked_no_dev() {
set_up();
todo!()
}
#[test]
#[ignore = "missing TestCase::init_temp_composer / create_installed_json / create_composer_lock and get_application_tester (ApplicationTester) infrastructure"]
fn test_locked_without_lock_file() {
set_up();
todo!()
}
|