Skip to content
Snippets Groups Projects
Commit 46f0b3ab authored by Andreas Gohr's avatar Andreas Gohr
Browse files

fixed test cases for recent search highlight changes

darcs-hash:20080319202909-7ad00-422eb0c47bd1503b3f857ad43dfd258c900e1100.gz
parent 92bcfa2a
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ class html_hilight_test extends UnitTestCase{
$html = 'Foo bar Foo php Foo';
$this->assertPattern(
'/Foo <span.*>bar<\/span> Foo <span.*>php<\/span> Foo/',
html_hilight($html,'bar php')
html_hilight($html,array('bar','php'))
);
}
......@@ -50,7 +50,7 @@ class html_hilight_test extends UnitTestCase{
$html = 'Foo <b>bar</b> <i>Foo</i> php Foo';
$this->assertPattern(
'/Foo <b><span.*>bar<\/span><\/b> <i>Foo<\/i> <span.*>php<\/span> Foo/',
html_hilight($html,'bar php')
html_hilight($html,array('bar','php'))
);
}
......@@ -65,7 +65,7 @@ class html_hilight_test extends UnitTestCase{
function testHighlightPHP() {
$html = 'Foo $_GET[\'bar\'] Foo';
$this->assertEqual(
'Foo <span class="search_hit">$_GET</span>[\'<span class="search_hit">bar</span>\'] Foo',
'Foo <span class="search_hit">$_GET[\'bar\']</span> Foo',
html_hilight($html,'$_GET[\'bar\']')
);
}
......@@ -81,7 +81,7 @@ class html_hilight_test extends UnitTestCase{
function testMatchAttributeWord() {
$html = 'Foo <b class="x">bar</b> Foo';
$this->assertEqual(
'Foo <b class="x"><span class="search_hit">bar</span></b> Foo',
'Foo <b class="x">bar</b> Foo',
html_hilight($html,'class="x">bar')
);
}
......
......@@ -48,7 +48,7 @@ class init_resolve_pageid_test extends UnitTestCase {
$tests[] = array('foo','.:','foo:start');
$tests[] = array('','foo:','foo:start');
$tests[] = array('foo','foo:','foo:start');
$tests[] = array('foo','playground:','playground:start');
$tests[] = array('foo','playground:','playground:playground');
foreach($tests as $test){
......
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