blob: 74a6794ac143aee3393c8a6c6b2a47cf64f8a262 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//! 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.
macro_rules! stub {
($name:ident) => {
#[test]
#[ignore = "reads/writes installed.json/installed.php fixtures via JsonFile/JsonManipulator (addcslashes todo!())"]
fn $name() {
todo!()
}
};
}
stub!(test_repository_read);
stub!(test_corrupted_repository_file);
stub!(test_unexistent_repository_file);
stub!(test_repository_write);
stub!(test_repository_writes_installed_php);
stub!(test_safely_load_installed_versions);
|