@@ -25,6 +25,7 @@ public function it_can_select_all_columns(): void
25
25
'author_company_name ' ,
26
26
'published ' ,
27
27
'created_at ' ,
28
+ 'actions ' ,
28
29
])
29
30
->call ('selectAllColumns ' , false )
30
31
->assertSet ('columns ' , []);
@@ -48,49 +49,49 @@ public static function cases(): array
48
49
'from ' => 'title ' ,
49
50
'to ' => 'author_name ' ,
50
51
'above ' => false ,
51
- 'order ' => ['thumbnail ' , 'category_title ' , 'author_name ' , 'title ' , 'author_company_name ' , 'published ' , 'created_at ' ],
52
+ 'order ' => ['thumbnail ' , 'category_title ' , 'author_name ' , 'title ' , 'author_company_name ' , 'published ' , 'created_at ' , ' actions ' ],
52
53
],
53
54
'From author_name to title, below the column ' => [
54
55
'from ' => 'author_name ' ,
55
56
'to ' => 'title ' ,
56
57
'above ' => false ,
57
- 'order ' => ['thumbnail ' , 'title ' , 'author_name ' , 'category_title ' , 'author_company_name ' , 'published ' , 'created_at ' ],
58
+ 'order ' => ['thumbnail ' , 'title ' , 'author_name ' , 'category_title ' , 'author_company_name ' , 'published ' , 'created_at ' , ' actions ' ],
58
59
],
59
60
'From title to author_name, above the column ' => [
60
61
'from ' => 'title ' ,
61
62
'to ' => 'author_name ' ,
62
63
'above ' => true ,
63
- 'order ' => ['thumbnail ' , 'category_title ' , 'title ' , 'author_name ' , 'author_company_name ' , 'published ' , 'created_at ' ],
64
+ 'order ' => ['thumbnail ' , 'category_title ' , 'title ' , 'author_name ' , 'author_company_name ' , 'published ' , 'created_at ' , ' actions ' ],
64
65
],
65
66
'From author_name to title, above the column ' => [
66
67
'from ' => 'author_name ' ,
67
68
'to ' => 'title ' ,
68
69
'above ' => true ,
69
- 'order ' => ['thumbnail ' , 'author_name ' , 'title ' , 'category_title ' , 'author_company_name ' , 'published ' , 'created_at ' ],
70
+ 'order ' => ['thumbnail ' , 'author_name ' , 'title ' , 'category_title ' , 'author_company_name ' , 'published ' , 'created_at ' , ' actions ' ],
70
71
],
71
72
'From thumbnail to author_company_name, below the column ' => [
72
73
'from ' => 'thumbnail ' ,
73
74
'to ' => 'author_company_name ' ,
74
75
'above ' => false ,
75
- 'order ' => ['title ' , 'category_title ' , 'author_name ' , 'author_company_name ' , 'thumbnail ' , 'published ' , 'created_at ' ],
76
+ 'order ' => ['title ' , 'category_title ' , 'author_name ' , 'author_company_name ' , 'thumbnail ' , 'published ' , 'created_at ' , ' actions ' ],
76
77
],
77
78
'From author_company_name to thumbnail, above the column ' => [
78
79
'from ' => 'author_company_name ' ,
79
80
'to ' => 'thumbnail ' ,
80
81
'above ' => true ,
81
- 'order ' => ['author_company_name ' , 'thumbnail ' , 'title ' , 'category_title ' , 'author_name ' , 'published ' , 'created_at ' ],
82
+ 'order ' => ['author_company_name ' , 'thumbnail ' , 'title ' , 'category_title ' , 'author_name ' , 'published ' , 'created_at ' , ' actions ' ],
82
83
],
83
84
'From thumbnail to thumbnail, above the column, does not change the order ' => [
84
85
'from ' => 'thumbnail ' ,
85
86
'to ' => 'thumbnail ' ,
86
87
'above ' => true ,
87
- 'order ' => ['thumbnail ' , 'title ' , 'category_title ' , 'author_name ' , 'author_company_name ' , 'published ' , 'created_at ' ],
88
+ 'order ' => ['thumbnail ' , 'title ' , 'category_title ' , 'author_name ' , 'author_company_name ' , 'published ' , 'created_at ' , ' actions ' ],
88
89
],
89
90
'From thumbnail to title, above the column, does not change the order ' => [
90
91
'from ' => 'thumbnail ' ,
91
92
'to ' => 'title ' ,
92
93
'above ' => true ,
93
- 'order ' => ['thumbnail ' , 'title ' , 'category_title ' , 'author_name ' , 'author_company_name ' , 'published ' , 'created_at ' ],
94
+ 'order ' => ['thumbnail ' , 'title ' , 'category_title ' , 'author_name ' , 'author_company_name ' , 'published ' , 'created_at ' , ' actions ' ],
94
95
],
95
96
];
96
97
}
0 commit comments