From f003239e138c5381da3e8b7077d015896c110e62 Mon Sep 17 00:00:00 2001 From: Daniel Zuncke Date: Sat, 3 Feb 2024 23:10:00 +0100 Subject: [PATCH] Issue 586: Add tests with keep_line_breaks true (Currently) only testing for the indentation problem after a newline. --- tests/allman/issue0586_keep_line_breaks.d.ref | 7 +++++++ tests/issue0586_keep_line_breaks.args | 1 + tests/issue0586_keep_line_breaks.d | 7 +++++++ tests/knr/issue0586_keep_line_breaks.d.ref | 7 +++++++ tests/otbs/issue0586_keep_line_breaks.d.ref | 6 ++++++ 5 files changed, 28 insertions(+) create mode 100644 tests/allman/issue0586_keep_line_breaks.d.ref create mode 100644 tests/issue0586_keep_line_breaks.args create mode 100644 tests/issue0586_keep_line_breaks.d create mode 100644 tests/knr/issue0586_keep_line_breaks.d.ref create mode 100644 tests/otbs/issue0586_keep_line_breaks.d.ref diff --git a/tests/allman/issue0586_keep_line_breaks.d.ref b/tests/allman/issue0586_keep_line_breaks.d.ref new file mode 100644 index 0000000..989a87e --- /dev/null +++ b/tests/allman/issue0586_keep_line_breaks.d.ref @@ -0,0 +1,7 @@ +void test() +{ + return Struct( + foo: field.foo, + bar: field.bar, + baz: field.baz); +} diff --git a/tests/issue0586_keep_line_breaks.args b/tests/issue0586_keep_line_breaks.args new file mode 100644 index 0000000..3e94d38 --- /dev/null +++ b/tests/issue0586_keep_line_breaks.args @@ -0,0 +1 @@ +--keep_line_breaks true diff --git a/tests/issue0586_keep_line_breaks.d b/tests/issue0586_keep_line_breaks.d new file mode 100644 index 0000000..a0da6b4 --- /dev/null +++ b/tests/issue0586_keep_line_breaks.d @@ -0,0 +1,7 @@ +void test() +{ + return Struct( +foo: field.foo, +bar: field.bar, +baz: field.baz); +} diff --git a/tests/knr/issue0586_keep_line_breaks.d.ref b/tests/knr/issue0586_keep_line_breaks.d.ref new file mode 100644 index 0000000..989a87e --- /dev/null +++ b/tests/knr/issue0586_keep_line_breaks.d.ref @@ -0,0 +1,7 @@ +void test() +{ + return Struct( + foo: field.foo, + bar: field.bar, + baz: field.baz); +} diff --git a/tests/otbs/issue0586_keep_line_breaks.d.ref b/tests/otbs/issue0586_keep_line_breaks.d.ref new file mode 100644 index 0000000..9e31fe3 --- /dev/null +++ b/tests/otbs/issue0586_keep_line_breaks.d.ref @@ -0,0 +1,6 @@ +void test() { + return Struct( + foo: field.foo, + bar: field.bar, + baz: field.baz); +}