This makes the tests much less brittle, by not depending on the exact order of the HTTP headers, nor always requiring to check for every single header.
7 lines
209 B
Rust
7 lines
209 B
Rust
pub mod server;
|
|
|
|
// TODO: remove once done converting to new support server?
|
|
#[allow(unused)]
|
|
pub static DEFAULT_USER_AGENT: &'static str =
|
|
concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION"));
|