From 736ba7dabfe3ed35dbe67d9b10340e534f1737ec Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Wed, 30 Mar 2016 19:41:21 +0100 Subject: [PATCH] Add a spaces to tabs test --- test/unit/convert-spaces-to-tabs/cmd | 1 + test/unit/{convert-tab/out => convert-spaces-to-tabs/in} | 0 test/unit/{convert-tab/in => convert-spaces-to-tabs/out} | 0 test/unit/{convert-tab => convert-tabs-to-spaces}/cmd | 0 test/unit/convert-tabs-to-spaces/in | 4 ++++ test/unit/convert-tabs-to-spaces/out | 4 ++++ 6 files changed, 9 insertions(+) create mode 100644 test/unit/convert-spaces-to-tabs/cmd rename test/unit/{convert-tab/out => convert-spaces-to-tabs/in} (100%) rename test/unit/{convert-tab/in => convert-spaces-to-tabs/out} (100%) rename test/unit/{convert-tab => convert-tabs-to-spaces}/cmd (100%) create mode 100644 test/unit/convert-tabs-to-spaces/in create mode 100644 test/unit/convert-tabs-to-spaces/out diff --git a/test/unit/convert-spaces-to-tabs/cmd b/test/unit/convert-spaces-to-tabs/cmd new file mode 100644 index 00000000..e38c3b67 --- /dev/null +++ b/test/unit/convert-spaces-to-tabs/cmd @@ -0,0 +1 @@ +% diff --git a/test/unit/convert-tab/out b/test/unit/convert-spaces-to-tabs/in similarity index 100% rename from test/unit/convert-tab/out rename to test/unit/convert-spaces-to-tabs/in diff --git a/test/unit/convert-tab/in b/test/unit/convert-spaces-to-tabs/out similarity index 100% rename from test/unit/convert-tab/in rename to test/unit/convert-spaces-to-tabs/out diff --git a/test/unit/convert-tab/cmd b/test/unit/convert-tabs-to-spaces/cmd similarity index 100% rename from test/unit/convert-tab/cmd rename to test/unit/convert-tabs-to-spaces/cmd diff --git a/test/unit/convert-tabs-to-spaces/in b/test/unit/convert-tabs-to-spaces/in new file mode 100644 index 00000000..080d1d4a --- /dev/null +++ b/test/unit/convert-tabs-to-spaces/in @@ -0,0 +1,4 @@ +void main() +{ + foo(); +} diff --git a/test/unit/convert-tabs-to-spaces/out b/test/unit/convert-tabs-to-spaces/out new file mode 100644 index 00000000..289aca8c --- /dev/null +++ b/test/unit/convert-tabs-to-spaces/out @@ -0,0 +1,4 @@ +void main() +{ + foo(); +}