mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-10 10:02:38 +03:00
Enable and add multi-line string formatting tests
This commit is contained in:
parent
1c8bc7d969
commit
85eda83398
@ -1098,47 +1098,114 @@ mod test_fmt {
|
||||
));
|
||||
}
|
||||
|
||||
// #[test]
|
||||
// fn empty_block_string() {
|
||||
// expr_formats_same(indoc!(
|
||||
// r#"
|
||||
// """"""
|
||||
// "#
|
||||
// ));
|
||||
// }
|
||||
#[test]
|
||||
fn empty_block_string() {
|
||||
expr_formats_same(indoc!(
|
||||
r#"
|
||||
"""
|
||||
"""
|
||||
"#
|
||||
));
|
||||
}
|
||||
|
||||
// #[test]
|
||||
// fn basic_block_string() {
|
||||
// expr_formats_same(indoc!(
|
||||
// r#"
|
||||
// """blah"""
|
||||
// "#
|
||||
// ));
|
||||
// }
|
||||
#[test]
|
||||
fn oneline_empty_block_string() {
|
||||
expr_formats_to(
|
||||
indoc!(
|
||||
r#"
|
||||
""""""
|
||||
"#
|
||||
),
|
||||
indoc!(
|
||||
r#"
|
||||
"""
|
||||
"""
|
||||
"#
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
// #[test]
|
||||
// fn newlines_block_string() {
|
||||
// expr_formats_same(indoc!(
|
||||
// r#"
|
||||
// """blah
|
||||
// spam
|
||||
// foo"""
|
||||
// "#
|
||||
// ));
|
||||
// }
|
||||
#[test]
|
||||
fn basic_block_string() {
|
||||
expr_formats_to(
|
||||
indoc!(
|
||||
r#"
|
||||
"""griffin"""
|
||||
"#
|
||||
),
|
||||
indoc!(
|
||||
r#"
|
||||
"griffin"
|
||||
"#
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
// #[test]
|
||||
// fn quotes_block_string() {
|
||||
// expr_formats_same(indoc!(
|
||||
// r#"
|
||||
// """
|
||||
#[test]
|
||||
fn multiline_basic_block_string() {
|
||||
expr_formats_to(
|
||||
indoc!(
|
||||
r#"
|
||||
"""griffin
|
||||
harpy"""
|
||||
"#
|
||||
),
|
||||
indoc!(
|
||||
r#"
|
||||
"""
|
||||
griffin
|
||||
harpy
|
||||
"""
|
||||
"#
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
// "" \""" ""\"
|
||||
#[test]
|
||||
fn newlines_block_string() {
|
||||
expr_formats_to(
|
||||
indoc!(
|
||||
r#"
|
||||
"""griffin
|
||||
harpy
|
||||
phoenix"""
|
||||
"#
|
||||
),
|
||||
indoc!(
|
||||
r#"
|
||||
"""
|
||||
griffin
|
||||
harpy
|
||||
phoenix
|
||||
"""
|
||||
"#
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
// """
|
||||
// "#
|
||||
// ));
|
||||
// }
|
||||
#[test]
|
||||
fn quotes_block_string_single_segment() {
|
||||
expr_formats_same(indoc!(
|
||||
r#"
|
||||
"""
|
||||
"griffin"
|
||||
"""
|
||||
"#
|
||||
));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn quotes_block_string() {
|
||||
expr_formats_same(indoc!(
|
||||
r#"
|
||||
"""
|
||||
|
||||
"" \""" ""\"
|
||||
|
||||
"""
|
||||
"#
|
||||
));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn zero() {
|
||||
|
Loading…
Reference in New Issue
Block a user