… and rename from tests to it (integration tests). This allows enabling the mod_module_files lint everywhere again.
		
			
				
	
	
		
			14 lines
		
	
	
		
			245 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			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() {}
 |