1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/13538] Add tests for double nested pagination loop

PHPBB3-13538
This commit is contained in:
Marc Alexander
2015-01-24 14:35:49 +01:00
parent ee03b4f1ef
commit a5c65449de
2 changed files with 39 additions and 0 deletions

View File

@@ -188,6 +188,26 @@ class phpbb_pagination_pagination_test extends phpbb_template_template_test_case
$this->assertEquals(str_replace("\t", '', $expect), $this->display('test'));
}
/**
* @dataProvider generate_template_pagination_data
*/
public function test_generate_template_pagination_double_nested($base_url, $start_name, $num_items, $per_page, $start_item, $expect)
{
// Block needs to be assigned before pagination
$this->template->assign_block_vars('sub', array(
'FOO' => 'bar',
));
$this->template->assign_block_vars('sub.level2', array(
'BAR' => 'foo',
));
$this->pagination->generate_template_pagination($base_url, 'sub.level2.pagination', $start_name, $num_items, $per_page, $start_item);
$this->template->set_filenames(array('test' => 'pagination_double_nested.html'));
$this->assertEquals(str_replace("\t", '', $expect), $this->display('test'));
}
public function on_page_data()
{
return array(