mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 22:09:09 +00:00
Fix invalid multiline string output in REPL
If a PlainLine string contains a newline character, the REPL will print the string using a triple-quoted block string.
This commit is contained in:
parent
5e8faf64be
commit
1b2952bc70
2 changed files with 30 additions and 2 deletions
|
@ -542,7 +542,18 @@ fn four_element_record() {
|
|||
#[test]
|
||||
fn multiline_string() {
|
||||
// If a string contains newlines, format it as a multiline string in the output
|
||||
expect_success(r#""\n\nhi!\n\n""#, "\"\n\nhi!\n\n\" : Str");
|
||||
expect_success(
|
||||
r#""\n\nhi!\n\n""#,
|
||||
indoc!(
|
||||
r#""""
|
||||
|
||||
|
||||
hi!
|
||||
|
||||
|
||||
""" : Str"#
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue