emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/phps-mode 7deebc5f79 101/212: Improved indent test desc


From: Christian Johansson
Subject: [elpa] externals/phps-mode 7deebc5f79 101/212: Improved indent test descriptions
Date: Wed, 26 Jan 2022 01:51:03 -0500 (EST)

branch: externals/phps-mode
commit 7deebc5f798c45e01a1df3d1a8a7c0bdbf29338d
Author: Christian Johansson <christian@cvj.se>
Commit: Christian Johansson <christian@cvj.se>

    Improved indent test descriptions
---
 test/phps-mode-test-indent.el | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/test/phps-mode-test-indent.el b/test/phps-mode-test-indent.el
index b0daebc4f2..82a84beb4b 100644
--- a/test/phps-mode-test-indent.el
+++ b/test/phps-mode-test-indent.el
@@ -377,7 +377,11 @@
 
   (phps-mode-test-indent--should-equal
    "<?php\n$var *=\n    25;\necho 'was here';"
-   "Multiplication equal assignment on multiple-lines")
+   "Multiplication equal assignment on two-lines")
+
+  (phps-mode-test-indent--should-equal
+   "<?php\n$var =\n    25\n    * 35;\necho 'was here';"
+   "Multiplication assignment on three-lines")
 
   (phps-mode-test-indent--should-equal
    "<?php\n$str = <<<EOD\nExample of string\nspanning multiple lines\nusing 
heredoc syntax.\nEOD;\n"
@@ -385,7 +389,7 @@
 
   (phps-mode-test-indent--should-equal
    "<?php\n$var =\n    500 .\n    \"200\" .\n    100.0 .\n    '200' .\n    
$this->getTail()\n    ->getBottom();"
-   "Multi-line assignments")
+   "Multi-line assignments with string concatenation and object-method 
chaining")
 
   )
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]