aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/repository/path_repository_test.rs
blob: c2cf8922f115bd416e018c060af189da72d81611 (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
//! ref: composer/tests/Composer/Test/Repository/PathRepositoryTest.php

// PathRepository does not implement RepositoryInterface and exposes no public
// getPackages/count/hasPackage; the delegation to its inner ArrayRepository is not yet
// ported, so there is no way to drive these tests. The unversioned cases additionally
// require the VersionGuesser (git).

#[ignore = "PathRepository exposes no public RepositoryInterface::get_packages/count/has_package; the inner ArrayRepository delegation is not ported"]
#[test]
fn test_load_package_from_file_system_with_incorrect_path() {
    todo!()
}

#[ignore = "PathRepository exposes no public RepositoryInterface::get_packages/count/has_package; the inner ArrayRepository delegation is not ported"]
#[test]
fn test_load_package_from_file_system_with_version() {
    todo!()
}

#[ignore = "PathRepository exposes no public RepositoryInterface::get_packages/count/has_package; the inner ArrayRepository delegation is not ported"]
#[test]
fn test_load_package_from_file_system_without_version() {
    todo!()
}

#[ignore = "PathRepository exposes no public RepositoryInterface::get_packages/count/has_package; the inner ArrayRepository delegation is not ported"]
#[test]
fn test_load_package_from_file_system_with_wildcard() {
    todo!()
}

#[ignore = "PathRepository exposes no public RepositoryInterface::get_packages/count/has_package; the inner ArrayRepository delegation is not ported"]
#[test]
fn test_load_package_with_explicit_versions() {
    todo!()
}

#[ignore = "PathRepository exposes no public RepositoryInterface::get_packages/count/has_package; the inner ArrayRepository delegation is not ported"]
#[test]
fn test_url_remains_relative() {
    todo!()
}

#[ignore = "PathRepository exposes no public RepositoryInterface::get_packages/count/has_package; the inner ArrayRepository delegation is not ported"]
#[test]
fn test_reference_none() {
    todo!()
}

#[ignore = "PathRepository exposes no public RepositoryInterface::get_packages/count/has_package; the inner ArrayRepository delegation is not ported"]
#[test]
fn test_reference_config() {
    todo!()
}