aboutsummaryrefslogtreecommitdiff
path: root/helix-term/tests/test
diff options
context:
space:
mode:
authorSkyler Hawthorne2022-09-17 13:34:56 +0000
committerMichael Davis2023-03-20 23:34:40 +0000
commit58ea1930544df165a4a1342932e4dd8cb93e14ea (patch)
tree3cdc8910f20963027cf444f1d1a4b3392c399b2f /helix-term/tests/test
parenta264faa98d348a13318f9ccbb0d979882a112654 (diff)
Allow explicit newlines in test DSL
The current test DSL currently has no way to express being at the end of a line, save for putting an explicit LF or CRLF inside the `#[|]#`. The problem with this approach is that it can add unintended extra new lines if used in conjunction with raw strings, which insert newlines for you. This is a simple attempt to mitigate this problem. If there is an explicit newline character at the end of the selection, and then it is immediately followed by the same newline character at the right end of the selection, this following newline is removed. This way, one can express a cursor at the end of a line explicitly.
Diffstat (limited to 'helix-term/tests/test')
-rw-r--r--helix-term/tests/test/commands.rs44
1 files changed, 22 insertions, 22 deletions
diff --git a/helix-term/tests/test/commands.rs b/helix-term/tests/test/commands.rs
index 74c32c4a..342a849b 100644
--- a/helix-term/tests/test/commands.rs
+++ b/helix-term/tests/test/commands.rs
@@ -201,12 +201,12 @@ async fn test_multi_selection_shell_commands() -> anyhow::Result<()> {
.as_str(),
"|echo foo<ret>",
platform_line(indoc! {"\
- #[|foo
- ]#
- #(|foo
- )#
- #(|foo
- )#
+ #[|foo\n]#
+
+ #(|foo\n)#
+
+ #(|foo\n)#
+
"})
.as_str(),
))
@@ -222,12 +222,12 @@ async fn test_multi_selection_shell_commands() -> anyhow::Result<()> {
.as_str(),
"!echo foo<ret>",
platform_line(indoc! {"\
- #[|foo
- ]#lorem
- #(|foo
- )#ipsum
- #(|foo
- )#dolor
+ #[|foo\n]#
+ lorem
+ #(|foo\n)#
+ ipsum
+ #(|foo\n)#
+ dolor
"})
.as_str(),
))
@@ -243,12 +243,12 @@ async fn test_multi_selection_shell_commands() -> anyhow::Result<()> {
.as_str(),
"<A-!>echo foo<ret>",
platform_line(indoc! {"\
- lorem#[|foo
- ]#
- ipsum#(|foo
- )#
- dolor#(|foo
- )#
+ lorem#[|foo\n]#
+
+ ipsum#(|foo\n)#
+
+ dolor#(|foo\n)#
+
"})
.as_str(),
))
@@ -300,8 +300,8 @@ async fn test_extend_line() -> anyhow::Result<()> {
platform_line(indoc! {"\
#[lorem
ipsum
- dolor
- |]#
+ dolor\n|]#
+
"})
.as_str(),
))
@@ -318,8 +318,8 @@ async fn test_extend_line() -> anyhow::Result<()> {
"2x",
platform_line(indoc! {"\
#[lorem
- ipsum
- |]#
+ ipsum\n|]#
+
"})
.as_str(),
))