mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-15 14:43:58 +00:00
857c1650ef
Pin to a specific toolchain version Format checking functionality Add a test to check the code formatting. Remove macro_use attribute
19 lines
414 B
Rust
19 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);
|
|
}
|
|
}
|