drop useless test

This commit is contained in:
Aleksey Kladov 2019-04-22 13:05:01 +03:00
parent 268e739c94
commit b73a978b95

View File

@ -331,31 +331,3 @@ pub(crate) fn ws(&self) -> SyntaxToken<'_> {
}
}
#[cfg(test)]
mod tests {
use super::*;
use ra_syntax::SourceFile;
#[test]
fn structure_editing() {
let file = SourceFile::parse(
"\
fn foo() {
let s = S {
original: 92,
}
}
",
);
let field_list = file.syntax().descendants().find_map(ast::NamedFieldList::cast).unwrap();
let mut editor = AstEditor::new(field_list);
let field = AstBuilder::<ast::NamedField>::from_text("first_inserted: 1");
editor.append_field(&field);
let field = AstBuilder::<ast::NamedField>::from_text("second_inserted: 2");
editor.append_field(&field);
eprintln!("{}", editor.ast().syntax());
}
}