blob: 1679b5d5c2f7bee83e5ab58fe508cfe2d3b4df45 (
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
|
//! 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.
#[test]
#[ignore = "needs JsonFile schema validation against the bundled composer-schema.json (not ported)"]
fn test_name_pattern() {
todo!()
}
#[test]
#[ignore = "needs JsonFile schema validation against the bundled composer-schema.json (not ported)"]
fn test_version_pattern() {
todo!()
}
#[test]
#[ignore = "needs JsonFile schema validation against the bundled composer-schema.json (not ported)"]
fn test_optional_abandoned_property() {
todo!()
}
#[test]
#[ignore = "needs JsonFile schema validation against the bundled composer-schema.json (not ported)"]
fn test_require_types() {
todo!()
}
#[test]
#[ignore = "needs JsonFile schema validation against the bundled composer-schema.json (not ported)"]
fn test_minimum_stability_values() {
todo!()
}
|