blob: b27f25bd35f299c70b6943cb0231bbbaad2ac87d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//! ref: composer/tests/Composer/Test/Json/JsonFormatterTest.php
/// Test if ę will get correctly formatted (unescaped)
/// https://github.com/composer/composer/issues/2613
#[ignore = "JsonFormatter is not implemented in crates/shirabe/src/json"]
#[test]
fn test_unicode_with_prepended_slash() {
todo!()
}
/// Surrogate pairs are intentionally skipped and not unescaped
/// https://github.com/composer/composer/issues/7510
#[ignore = "JsonFormatter is not implemented in crates/shirabe/src/json"]
#[test]
fn test_utf16_surrogate_pair() {
todo!()
}
|