2021-06-24 23:38:32 +00:00
|
|
|
use crate::context::parse_lint_and_tool_name;
|
2021-07-08 15:14:28 +00:00
|
|
|
use rustc_span::{create_default_session_globals_then, Symbol};
|
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")
|
|
|
|
)
|
|
|
|
});
|
|
|
|
}
|