- Timestamp:
- 08/07/2015 09:54:05 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/replies/template/post_type.php
r5746 r5890 15 15 */ 16 16 public function test_bbp_reply_post_type() { 17 $r = $this->factory->reply->create(); 17 $t = $this->factory->topic->create(); 18 19 $r = $this->factory->reply->create( array( 20 'post_parent' => $t, 21 'reply_meta' => array( 22 'topic_id' => $t, 23 ), 24 ) ); 18 25 19 26 $robj = get_post_type_object( 'reply' );
Note: See TracChangeset
for help on using the changeset viewer.