Skip to content
Snippets Groups Projects
Commit 5c3a87aa authored by Erick Hitter's avatar Erick Hitter
Browse files

Test coverage

parent dc08225c
No related branches found
No related tags found
1 merge request!5Add block-editor support
Pipeline #4962 failed with stages
in 1 minute and 57 seconds
......@@ -112,8 +112,18 @@ class Test_Automatically_Paginate_Posts extends WP_UnitTestCase {
$post = $this->factory->post->create_and_get( $input['post_args'] );
update_option( 'autopaging_paging_type', $input['type'] );
update_option( 'autopaging_num_pages', $input['num_pages'] );
update_option( 'autopaging_num_words', $input['num_words'] );
add_filter(
'autopaging_num_pages',
static function() use( $input ) {
return $input['num_pages'];
}
);
add_filter(
'autopaging_num_words',
static function() use( $input ) {
return $input['num_words'];
}
);
$this->assertEquals(
$expected,
......@@ -164,6 +174,18 @@ class Test_Automatically_Paginate_Posts extends WP_UnitTestCase {
'num_words' => 2,
),
),
'Classic post, three pages' => array(
"1<!--nextpage-->\r\n\r\n2<!--nextpage-->\r\n\r\n3",
array(
'post_args' => array(
'post_type' => 'post',
'post_content' => "1\r\n\r\n2\r\n\r\n3",
),
'type' => 'pages',
'num_pages' => 3,
'num_words' => 2,
),
),
);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment