blob: d798fc9f69e84f5787f38e85b450799d1d12e650 (
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
|
//! ref: composer/tests/Composer/Test/Repository/FilesystemRepositoryTest.php
// These read/write installed.json and installed.php fixtures via JsonFile and assert the
// generated output; the file IO/manipulation (JsonManipulator reaches addcslashes, todo!())
// and fixtures are not ported.
#[test]
#[ignore = "reads/writes installed.json/installed.php fixtures via JsonFile/JsonManipulator (addcslashes todo!())"]
fn test_repository_read() {
todo!()
}
#[test]
#[ignore = "reads/writes installed.json/installed.php fixtures via JsonFile/JsonManipulator (addcslashes todo!())"]
fn test_corrupted_repository_file() {
todo!()
}
#[test]
#[ignore = "reads/writes installed.json/installed.php fixtures via JsonFile/JsonManipulator (addcslashes todo!())"]
fn test_unexistent_repository_file() {
todo!()
}
#[test]
#[ignore = "reads/writes installed.json/installed.php fixtures via JsonFile/JsonManipulator (addcslashes todo!())"]
fn test_repository_write() {
todo!()
}
#[test]
#[ignore = "reads/writes installed.json/installed.php fixtures via JsonFile/JsonManipulator (addcslashes todo!())"]
fn test_repository_writes_installed_php() {
todo!()
}
#[test]
#[ignore = "reads/writes installed.json/installed.php fixtures via JsonFile/JsonManipulator (addcslashes todo!())"]
fn test_safely_load_installed_versions() {
todo!()
}
|