blob: a14804bfaff5f8915f4ac13e96e8a49b38a3dd8f (
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
|
//! ref: composer/tests/Composer/Test/Repository/FilesystemRepositoryTest.php
#[test]
#[ignore = "test body not yet ported (todo!() stub)"]
fn test_repository_read() {
todo!()
}
#[test]
#[ignore = "test body not yet ported (todo!() stub)"]
fn test_corrupted_repository_file() {
todo!()
}
#[test]
#[ignore = "test body not yet ported (todo!() stub)"]
fn test_unexistent_repository_file() {
todo!()
}
#[test]
#[ignore = "test body not yet ported (todo!() stub)"]
fn test_repository_write() {
todo!()
}
#[test]
#[ignore = "test body not yet ported (todo!() stub)"]
fn test_repository_writes_installed_php() {
todo!()
}
#[test]
#[ignore = "test body not yet ported (todo!() stub)"]
fn test_safely_load_installed_versions() {
todo!()
}
|