mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 03:57:37 +00:00
30 lines
748 B
Rust
30 lines
748 B
Rust
#![allow(rustc::symbol_intern_string_literal)]
|
|
|
|
use rustc_span::{Symbol, create_default_session_globals_then};
|
|
|
|
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")
|
|
)
|
|
});
|
|
}
|