1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[feature/merging-style-components] Adjusting unit tests

Adjusting unit tests for new styles table structure

PHPBB3-10632
This commit is contained in:
Vjacheslav Trushkin
2012-02-18 02:01:35 +02:00
parent f32cc3ae8f
commit ce215658eb
2 changed files with 28 additions and 14 deletions

View File

@@ -33,24 +33,30 @@ class phpbb_dbal_order_lower_test extends phpbb_database_test_case
'style_name' => 'prosilver',
'style_copyright' => '© phpBB Group',
'style_active' => 1,
'template_id' => 1,
'theme_id' => 1,
'style_path' => 'prosilver',
'bbcode_bitfield' => 'kNg=',
'style_parent_id' => 0,
'style_parent_tree' => '',
),
array(
'style_id' => 3,
'style_name' => 'Prosilver1',
'style_copyright' => '© phpBB Group',
'style_active' => 0,
'template_id' => 3,
'theme_id' => 3,
'style_path' => 'prosilver1',
'bbcode_bitfield' => 'kNg=',
'style_parent_id' => 1,
'style_parent_tree' => 'prosilver',
),
array(
'style_id' => 2,
'style_name' => 'prosilver2',
'style_copyright' => '© phpBB Group',
'style_active' => 0,
'template_id' => 2,
'theme_id' => 2,
'style_path' => 'prosilver2',
'bbcode_bitfield' => 'kNg=',
'style_parent_id' => 0,
'style_parent_tree' => '',
)
),
$db->sql_fetchrowset($result)