blob: 044bec1630cfb4bb90ac789ab5501a10b4d989e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//! ref: composer/tests/Composer/Test/Json/ComposerSchemaTest.php
// These validate documents against the bundled composer-schema.json via JsonFile's
// json-schema validator, which is not ported.
macro_rules! stub {
($name:ident) => {
#[test]
#[ignore = "needs JsonFile schema validation against the bundled composer-schema.json (not ported)"]
fn $name() {
todo!()
}
};
}
stub!(test_name_pattern);
stub!(test_version_pattern);
stub!(test_optional_abandoned_property);
stub!(test_require_types);
stub!(test_minimum_stability_values);
|