branch: externals/phps-mode commit 7deebc5f798c45e01a1df3d1a8a7c0bdbf29338d Author: Christian Johansson <christ...@cvj.se> Commit: Christian Johansson <christ...@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") )