chore: checkpoint before Python removal

This commit is contained in:
2026-03-26 22:33:59 +00:00
parent 683cec9307
commit e568ddf82a
29972 changed files with 11269302 additions and 2 deletions

31
vendor/utf8parse/tests/utf-8-demo.rs vendored Normal file
View File

@@ -0,0 +1,31 @@
use utf8parse::{Parser, Receiver};
static UTF8_DEMO: &[u8] = include_bytes!("UTF-8-demo.txt");
#[derive(Debug, PartialEq)]
struct StringWrapper(String);
impl Receiver for StringWrapper {
fn codepoint(&mut self, c: char) {
self.0.push(c);
}
fn invalid_sequence(&mut self) {}
}
#[test]
fn utf8parse_test() {
let mut parser = Parser::new();
// utf8parse implementation
let mut actual = StringWrapper(String::new());
for byte in UTF8_DEMO {
parser.advance(&mut actual, *byte)
}
// standard library implementation
let expected = String::from_utf8_lossy(UTF8_DEMO);
assert_eq!(actual.0, expected);
}