wordpress-activitypub/tests/test-class-activitypub-post.php
2022-12-27 16:14:19 +01:00

25 lines
563 B
PHP

<?php
class Test_Activitypub_Post extends WP_UnitTestCase {
public function test_to_array() {
\Activitypub\Activitypub::init();
$post = \wp_insert_post(
array(
'post_author' => 1,
'post_content' => 'test',
)
);
$permalink = \get_permalink( $post );
$activitypub_post = new \Activitypub\Model\Post( $post );
$this->assertEquals( $permalink, $activitypub_post->get_id() );
\wp_trash_post( $post );
$activitypub_post = new \Activitypub\Model\Post( $post );
$this->assertEquals( $permalink, $activitypub_post->get_id() );
}
}