Files
piratepoet/tests/unit/_bootstrap.php
2016-09-21 14:09:24 -04:00

46 lines
1007 B
PHP

<?php
use Codeception\Util\Fixtures;
Fixtures::add(
'newsletter_body_template',
'{
"content": {
"type": "container",
"orientation": "vertical",
"blocks": [
{
"type": "container",
"styles": { "block": {} },
"orientation": "horizontal",
"blocks": [
{
"type": "container",
"orientation": "vertical",
"styles": { "block": {} },
"blocks": [
{
"type": "text",
"text": "<a data-post-id=\"10\" href=\"http://example.com\">Link</a>Hello [subscriber:firstname]"
}
]
}
]
}
]
}
}'
);
Fixtures::add(
'newsletter_subject_template',
'Newsletter for [subscriber:firstname]'
);
Fixtures::add(
'subscriber_template',
array(
'first_name' => 'John',
'last_name' => 'John',
'email' => 'john.doe@example.com'
)
);