[PATCH] [GSoC]t7501:modernize the style of test body

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



From: Ashutosh Pandey <ashutosh.pandeyhlr007@xxxxxxxxx>

some of the test body followed the old style of test body which isn't
consistent with the new rules which is that multiple commands on one
line should be split across multiple lines this patch accomplishes that
in this test script that is t7501.

Signed-off-by: Ashutosh Pandey <ashutosh.pandeyhlr007@xxxxxxxxx>
---
 t/t7501-commit-basic-functionality.sh | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)

diff --git a/t/t7501-commit-basic-functionality.sh b/t/t7501-commit-basic-functionality.sh
index fb5417d5e7..c31d6f53f4 100755
--- a/t/t7501-commit-basic-functionality.sh
+++ b/t/t7501-commit-basic-functionality.sh
@@ -33,12 +33,16 @@ test_expect_success 'setup: initial commit' '
 '
 
 test_expect_success '-m and -F do not mix' '
-	git checkout HEAD file && echo >>file && git add file &&
+	git checkout HEAD file &&
+	echo >>file && 
+	git add file &&
 	test_must_fail git commit -m foo -m bar -F file
 '
 
 test_expect_success '-m and -C do not mix' '
-	git checkout HEAD file && echo >>file && git add file &&
+	git checkout HEAD file &&
+	echo >>file && 
+	git add file &&
 	test_must_fail git commit -C HEAD -m illegal
 '
 
@@ -134,18 +138,24 @@ test_expect_success 'empty commit message' '
 '
 
 test_expect_success 'template "emptyness" check does not kick in with -F' '
-	git checkout HEAD file && echo >>file && git add file &&
+	git checkout HEAD file &&
+	echo >>file && 
+	git add file &&
 	git commit -t file -F file
 '
 
 test_expect_success 'template "emptyness" check' '
-	git checkout HEAD file && echo >>file && git add file &&
+	git checkout HEAD file && 
+	echo >>file && 
+	git add file &&
 	test_must_fail git commit -t file 2>err &&
 	test_i18ngrep "did not edit" err
 '
 
 test_expect_success 'setup: commit message from file' '
-	git checkout HEAD file && echo >>file && git add file &&
+	git checkout HEAD file && 
+	echo >>file && 
+	git add file &&
 	echo this is the commit message, coming from a file >msg &&
 	git commit -F msg -a
 '

base-commit: d9d677b2d8cc5f70499db04e633ba7a400f64cbf
-- 
2.39.2




[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux