ruwuma/crates/ruma-common/tests/it/api/ui/removed-without-deprecated.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
245 B
Rust

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