mirror of https://github.com/helix-editor/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
872 B
Rust
42 lines
872 B
Rust
use super::*;
|
|
|
|
#[tokio::test(flavor = "multi_thread")]
|
|
async fn auto_indent() -> anyhow::Result<()> {
|
|
let app = || AppBuilder::new().with_file("foo.go", None);
|
|
|
|
let enter_tests = [
|
|
(
|
|
indoc! {r##"
|
|
type Test struct {#[}|]#
|
|
"##},
|
|
"i<ret>",
|
|
indoc! {"\
|
|
type Test struct {
|
|
\t#[|\n]#
|
|
}
|
|
"},
|
|
),
|
|
(
|
|
indoc! {"\
|
|
func main() {
|
|
\tswitch nil {#[}|]#
|
|
}
|
|
"},
|
|
"i<ret>",
|
|
indoc! {"\
|
|
func main() {
|
|
\tswitch nil {
|
|
\t\t#[|\n]#
|
|
\t}
|
|
}
|
|
"},
|
|
),
|
|
];
|
|
|
|
for test in enter_tests {
|
|
test_with_config(app(), test).await?;
|
|
}
|
|
|
|
Ok(())
|
|
}
|