Update to last upstream version
This commit is contained in:
parent
a2654fb64c
commit
d891c8cd54
1 changed files with 6 additions and 4 deletions
|
@ -1,21 +1,23 @@
|
|||
use crate::context::parse_lint_and_tool_name;
|
||||
use rustc_span::{with_default_session_globals, Symbol};
|
||||
use rustc_span::{create_default_session_globals_then, Symbol};
|
||||
|
||||
#[test]
|
||||
fn parse_lint_no_tool() {
|
||||
with_default_session_globals(|| assert_eq!(parse_lint_and_tool_name("foo"), (None, "foo")));
|
||||
create_default_session_globals_then(|| {
|
||||
assert_eq!(parse_lint_and_tool_name("foo"), (None, "foo"))
|
||||
});
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn parse_lint_with_tool() {
|
||||
with_default_session_globals(|| {
|
||||
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() {
|
||||
with_default_session_globals(|| {
|
||||
create_default_session_globals_then(|| {
|
||||
assert_eq!(
|
||||
parse_lint_and_tool_name("clippy::foo::bar"),
|
||||
(Some(Symbol::intern("clippy")), "foo::bar")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue