From 495e992e867bb2d82f9068ba94dbbcea9e4904f2 Mon Sep 17 00:00:00 2001 From: Benji Fisher <benji@FisherFam.org> Date: Fri, 1 Jan 2021 15:40:11 -0500 Subject: [PATCH] 244: Add a test case where values are cast to arrays --- tests/src/Unit/process/TransposeTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/src/Unit/process/TransposeTest.php b/tests/src/Unit/process/TransposeTest.php index 7b900625..453b602c 100644 --- a/tests/src/Unit/process/TransposeTest.php +++ b/tests/src/Unit/process/TransposeTest.php @@ -48,6 +48,10 @@ class TransposeTest extends MigrateProcessTestCase { 'input' => [], 'expected_output' => [], ], + 'simple array' => [ + 'input' => [1, 2, 3], + 'expected_output' => [[1, 2, 3]], + ], 'image files and alt text' => [ 'input' => [ ['2.png', '3.png', '5.png', '7.png'], -- GitLab