aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/command/licenses_command_test.rs
blob: 113a77eaf4c45d96337aab1afa2f2fd763dd6089 (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 = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
fn test_basic_run() {
    set_up();

    todo!()
}

#[test]
#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
fn test_no_dev() {
    set_up();

    todo!()
}

#[test]
#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
fn test_format_json() {
    set_up();

    todo!()
}

#[test]
#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
fn test_format_summary() {
    set_up();

    todo!()
}

#[test]
#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
fn test_format_unknown() {
    set_up();

    todo!()
}

#[test]
#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
fn test_locked() {
    set_up();

    todo!()
}

#[test]
#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
fn test_locked_no_dev() {
    set_up();

    todo!()
}

#[test]
#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
fn test_locked_without_lock_file() {
    set_up();

    todo!()
}