This repository has no description
430 B
15 lines
1use proptest::prelude::*;
2
3proptest! {
4 #![proptest_config(ProptestConfig::with_cases(1024))]
5
6 #[test]
7 fn the_pubkey_parsers_never_panic(data in proptest::collection::vec(any::<u8>(), 0..4096)) {
8 knot_atproto::fuzz::pubkey(&data);
9 }
10
11 #[test]
12 fn the_did_document_decoder_never_panics(data in proptest::collection::vec(any::<u8>(), 0..4096)) {
13 knot_atproto::fuzz::did_document(&data);
14 }
15}