mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-09 21:28:21 +00:00
37 lines
1,000 B
Rust
37 lines
1,000 B
Rust
use ruff_python_ast::stmt_if::elif_else_range;
|
|
|
|
use ruff_python_parser::{parse_suite, ParseError};
|
|
use ruff_text_size::TextSize;
|
|
|
|
#[test]
|
|
fn extract_elif_else_range() -> Result<(), ParseError> {
|
|
let contents = "if a:
|
|
...
|
|
elif b:
|
|
...
|
|
";
|
|
let mut stmts = parse_suite(contents, "<filename>")?;
|
|
let stmt = stmts
|
|
.pop()
|
|
.and_then(ruff_python_ast::Stmt::if_stmt)
|
|
.unwrap();
|
|
let range = elif_else_range(&stmt.elif_else_clauses[0], contents).unwrap();
|
|
assert_eq!(range.start(), TextSize::from(14));
|
|
assert_eq!(range.end(), TextSize::from(18));
|
|
|
|
let contents = "if a:
|
|
...
|
|
else:
|
|
...
|
|
";
|
|
let mut stmts = parse_suite(contents, "<filename>")?;
|
|
let stmt = stmts
|
|
.pop()
|
|
.and_then(ruff_python_ast::Stmt::if_stmt)
|
|
.unwrap();
|
|
let range = elif_else_range(&stmt.elif_else_clauses[0], contents).unwrap();
|
|
assert_eq!(range.start(), TextSize::from(14));
|
|
assert_eq!(range.end(), TextSize::from(18));
|
|
|
|
Ok(())
|
|
}
|