wordpress-activitypub/tests/test-class-activitypub.php

11 lines
367 B
PHP
Raw Normal View History

2019-02-28 18:32:03 +00:00
<?php
class Test_Activitypub extends WP_UnitTestCase {
public function test_post_type_support() {
2020-05-12 18:30:06 +00:00
\add_post_type_support( 'post', 'activitypub' );
\add_post_type_support( 'page', 'activitypub' );
2019-02-28 18:32:03 +00:00
2020-05-12 18:30:06 +00:00
$this->assertContains( 'post', \get_post_types_by_support( 'activitypub' ) );
$this->assertContains( 'page', \get_post_types_by_support( 'activitypub' ) );
2019-02-28 18:32:03 +00:00
}
}