2025-01-08 20:26:39 +00:00
|
|
|
#![allow(rustc::symbol_intern_string_literal)]
|
2024-12-11 16:30:33 +00:00
|
|
|
|
2021-07-08 15:14:28 +00:00
|
|
|
use rustc_span::{Symbol, create_default_session_globals_then};
|
2021-06-24 23:38:32 +00:00
|
|
|
|
2023-08-28 18:16:54 +00:00
|
|
|
use crate::levels::parse_lint_and_tool_name;
|
2024-07-28 22:13:50 +00:00
|
|
|
|
2021-06-24 23:38:32 +00:00
|
|
|
#[test]
|
|
|
|
fn parse_lint_no_tool() {
|
2021-07-08 15:14:28 +00:00
|
|
|
create_default_session_globals_then(|| {
|
|
|
|
assert_eq!(parse_lint_and_tool_name("foo"), (None, "foo"))
|
|
|
|
});
|
2021-06-24 23:38:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn parse_lint_with_tool() {
|
2021-07-08 15:14:28 +00:00
|
|
|
create_default_session_globals_then(|| {
|
2021-06-24 23:38:32 +00:00
|
|
|
assert_eq!(parse_lint_and_tool_name("clippy::foo"), (Some(Symbol::intern("clippy")), "foo"))
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn parse_lint_multiple_path() {
|
2021-07-08 15:14:28 +00:00
|
|
|
create_default_session_globals_then(|| {
|
2021-06-24 23:38:32 +00:00
|
|
|
assert_eq!(
|
|
|
|
parse_lint_and_tool_name("clippy::foo::bar"),
|
|
|
|
(Some(Symbol::intern("clippy")), "foo::bar")
|
|
|
|
)
|
|
|
|
});
|
|
|
|
}
|