mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 11:31:15 +00:00

Pin to a specific toolchain version Format checking functionality Add a test to check the code formatting. Remove macro_use attribute
20 lines
414 B
Rust
20 lines
414 B
Rust
extern crate tools;
|
|
|
|
use tools::{
|
|
generate, Verify, run_rustfmt,
|
|
};
|
|
|
|
#[test]
|
|
fn verify_template_generation() {
|
|
if let Err(error) = generate(Verify) {
|
|
panic!("{}. Please update it by running `cargo gen-syntax`", error);
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn check_code_formatting() {
|
|
if let Err(error) = run_rustfmt(Verify) {
|
|
panic!("{}. Please format the code by running `cargo format`", error);
|
|
}
|
|
}
|