mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 20:17:50 +00:00

The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
28 lines
700 B
Rust
28 lines
700 B
Rust
use rustc_span::{create_default_session_globals_then, Symbol};
|
|
|
|
use crate::levels::parse_lint_and_tool_name;
|
|
|
|
#[test]
|
|
fn parse_lint_no_tool() {
|
|
create_default_session_globals_then(|| {
|
|
assert_eq!(parse_lint_and_tool_name("foo"), (None, "foo"))
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn parse_lint_with_tool() {
|
|
create_default_session_globals_then(|| {
|
|
assert_eq!(parse_lint_and_tool_name("clippy::foo"), (Some(Symbol::intern("clippy")), "foo"))
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn parse_lint_multiple_path() {
|
|
create_default_session_globals_then(|| {
|
|
assert_eq!(
|
|
parse_lint_and_tool_name("clippy::foo::bar"),
|
|
(Some(Symbol::intern("clippy")), "foo::bar")
|
|
)
|
|
});
|
|
}
|