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

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

[elpa] externals/phps-mode 027b102d71 04/15: Added failing indentation t


From: Christian Johansson
Subject: [elpa] externals/phps-mode 027b102d71 04/15: Added failing indentation tests
Date: Fri, 4 Mar 2022 14:13:02 -0500 (EST)

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

    Added failing indentation tests
---
 test/phps-mode-test-indent.el | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/test/phps-mode-test-indent.el b/test/phps-mode-test-indent.el
index 3a1c40b5b7..1cdc99da9d 100644
--- a/test/phps-mode-test-indent.el
+++ b/test/phps-mode-test-indent.el
@@ -672,6 +672,21 @@
    "<?php\n$var = Object->myMethod()\n    ->myMethod2();\necho 'here';"
    "Line after assignment were an chaining of object methods started")
 
+  ;; TODO Make this pass
+  (phps-mode-test-indent--should-equal
+   "<?php\nif (true) {\n    $table = $installer->getConnection()\n        
->newTable($installer->getTable('my_table'))\n        ->addColumn();\n}\n"
+   "Variable assignment with chained method calls on multiple lines #1")
+
+  ;; TODO Make this pass
+  (phps-mode-test-indent--should-equal
+   "<?php\nif (true) {\n    $criteria = $this->searchCriteriaBuilder\n        
->addFilter('status', $status)\n        ->addFilter(method', 'my_method_' . 
$object->getId())\n        ->create();\n}\n"
+   "Variable assignment with chained method calls on multiple lines #2")
+
+  ;; TODO Make this pass
+  (phps-mode-test-indent--should-equal
+   "<?php\nif (true) {\n    /*\n    was here\n    */\n    echo 'there';\n}"
+   "Line after closing multi-row comment")
+
   )
 
 (defun phps-mode-test-indent--get-lines-indent-psr-2 ()



reply via email to

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