ruwuma/crates/ruma-common/tests/it/api/ui/deprecated-without-added.rs
Jonas Platte 7051892077 Move integration tests one directory level deeper
… and rename from tests to it (integration tests).
This allows enabling the mod_module_files lint everywhere again.
2024-09-11 07:13:32 +00:00

14 lines
241 B
Rust

use ruma_common::{api::Metadata, metadata};
const _: Metadata = metadata! {
method: GET,
rate_limited: false,
authentication: None,
history: {
unstable => "/a/path",
1.1 => deprecated,
}
};
fn main() {}