Skip to content
Snippets Groups Projects
Commit 495e992e authored by Benji Fisher's avatar Benji Fisher Committed by Lucas Hedding
Browse files

244: Add a test case where values are cast to arrays

parent d89dbcd4
No related branches found
No related tags found
No related merge requests found
...@@ -48,6 +48,10 @@ class TransposeTest extends MigrateProcessTestCase { ...@@ -48,6 +48,10 @@ class TransposeTest extends MigrateProcessTestCase {
'input' => [], 'input' => [],
'expected_output' => [], 'expected_output' => [],
], ],
'simple array' => [
'input' => [1, 2, 3],
'expected_output' => [[1, 2, 3]],
],
'image files and alt text' => [ 'image files and alt text' => [
'input' => [ 'input' => [
['2.png', '3.png', '5.png', '7.png'], ['2.png', '3.png', '5.png', '7.png'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment