transformer_refactoring #44

Merged
linos merged 42 commits from transformer_refactoring into main 2024-10-02 19:15:29 +02:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 1aedb964a9 - Show all commits

View file

@ -54,7 +54,7 @@
],
"test-debug": [
"@prepare-test",
"@test-vs-event-list"
"@test-gatherpress"
],
"test-vs-event-list": "phpunit --filter=vs_event_list",
"test-the-events-calendar": "phpunit --filter=the_events_calendar",

View file

@ -49,6 +49,7 @@ class Test_GatherPress extends WP_UnitTestCase {
'post_title' => 'Unit Test Event',
'post_type' => 'gatherpress_event',
'post_content' => 'Unit Test description.',
'post_status' => 'publish',
)
);
$event = new \GatherPress\Core\Event( $post_id );
@ -77,7 +78,7 @@ class Test_GatherPress extends WP_UnitTestCase {
'post_title' => 'Unit Test Event',
'post_type' => 'gatherpress_event',
'post_content' => 'Unit Test description.',
'post_status' => 'published',
'post_status' => 'publish',
)
);
$event = new \GatherPress\Core\Event( $post_id );