@@ -11,38 +11,34 @@ Feature: List properites and chidren of current node
1111 Given the current node is "/tests_general_base"
1212 And I execute the "node:list --no-ansi" command
1313 Then the command should not fail
14- And I should see a table with the following rows
15- | Node / Prop | Type | Value |
16- | -jcr :createdBy | STRING | admin |
17- | -jcr :primaryType | NAME | nt :folder |
18- | index .txt / | nt :file | |
14+ And I should see a table containing the following rows:
1915 | idExample / | nt :file | |
20- | test :namespacedNode / | nt :folder | |
21- | emptyExample / | nt :folder | |
16+ | test :namespacedNode | nt :folder | |
17+ | emptyExample | nt :folder | |
2218 | multiValueProperty / | nt :folder | |
2319 | numberPropertyNode / | nt :file | |
2420 | NumberPropertyNodeToCompare1 / | nt :file | |
2521 | NumberPropertyNodeToCompare2 / | nt :file | |
22+ | jcr :createdBy | STRING | admin |
23+ | jcr :primaryType | NAME | nt :folder |
2624
2725 Scenario : List the properties
2826 Given the current node is "/tests_general_base"
2927 And I execute the "node:list --properties --no-ansi" command
3028 Then the command should not fail
31- And I should see a table with the following rows
32- | Property name | Type | Value |
33- | -jcr :createdBy | STRING | admin |
34- | -jcr :primaryType | NAME | nt :folder |
29+ And I should see a table containing the following rows:
30+ | jcr :createdBy | STRING | admin |
31+ | jcr :primaryType | NAME | nt :folder |
3532
3633 Scenario : List the children nodes
3734 Given the current node is "/tests_general_base"
3835 And I execute the "node:list --children --no-ansi" command
3936 Then the command should not fail
40- And I should see a table with the following rows
41- | Node name | Node Type | Value |
37+ And I should see a table containing the following rows:
4238 | index .txt / | nt :file | |
4339 | idExample / | nt :file | |
44- | test :namespacedNode / | nt :folder | |
45- | emptyExample / | nt :folder | |
40+ | test :namespacedNode | nt :folder | |
41+ | emptyExample | nt :folder | |
4642 | multiValueProperty / | nt :folder | |
4743 | numberPropertyNode / | nt :file | |
4844 | NumberPropertyNodeToCompare1 / | nt :file | |
0 commit comments