mirror of
https://github.com/Codappix/typo3-php-datasets.git
synced 2024-11-13 08:56:12 +01:00
Daniel Siepmann
5887cb87fe
Allows to import a PHP data set within TYPO3 testing framework. Allows to assert a PHP data set within TYPO3 testing framework.
18 lines
335 B
PHP
18 lines
335 B
PHP
<?php
|
|
|
|
return [
|
|
'pages' => [
|
|
[
|
|
'uid' => 1,
|
|
'pid' => 0,
|
|
'is_siteroot' => 1,
|
|
'title' => 'Rootpage',
|
|
],
|
|
[
|
|
'uid' => 2,
|
|
'pid' => 0,
|
|
'title' => 'Another Page',
|
|
'description' => 'Some other text',
|
|
],
|
|
],
|
|
];
|