proptest-http-message 0.1.0

Proptest strategies for generating HTTP request and response messages or individual components components
Documentation
1
2
3
4
5
use proptest::prelude::Strategy;

pub fn unreserved() -> impl Strategy<Value = String> {
  "[a-zA-Z0-9\\-._~]"
}