use xml parser, not html
This commit is contained in:
parent
a25838b267
commit
b2c48977bb
1 changed files with 4 additions and 4 deletions
|
@ -16,13 +16,13 @@ class www_SearchTest extends TestBaseApi
|
||||||
$res = $this->getRequest('/all/foo+bar')->send();
|
$res = $this->getRequest('/all/foo+bar')->send();
|
||||||
$this->assertSelectCount(
|
$this->assertSelectCount(
|
||||||
'.xfolkentry', true, $res->getBody(),
|
'.xfolkentry', true, $res->getBody(),
|
||||||
'No bookmark found'
|
'No bookmark found', false
|
||||||
);
|
);
|
||||||
|
|
||||||
$res = $this->getRequest('/all/baz+bat')->send();
|
$res = $this->getRequest('/all/baz+bat')->send();
|
||||||
$this->assertSelectCount(
|
$this->assertSelectCount(
|
||||||
'.xfolkentry', false, $res->getBody(),
|
'.xfolkentry', false, $res->getBody(),
|
||||||
'Bookmarks found'
|
'Bookmarks found', false
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,13 +38,13 @@ class www_SearchTest extends TestBaseApi
|
||||||
$res = $this->getRequest('/all/foo bar')->send();
|
$res = $this->getRequest('/all/foo bar')->send();
|
||||||
$this->assertSelectCount(
|
$this->assertSelectCount(
|
||||||
'.xfolkentry', true, $res->getBody(),
|
'.xfolkentry', true, $res->getBody(),
|
||||||
'No bookmark found'
|
'No bookmark found', false
|
||||||
);
|
);
|
||||||
|
|
||||||
$res = $this->getRequest('/all/baz bat')->send();
|
$res = $this->getRequest('/all/baz bat')->send();
|
||||||
$this->assertSelectCount(
|
$this->assertSelectCount(
|
||||||
'.xfolkentry', false, $res->getBody(),
|
'.xfolkentry', false, $res->getBody(),
|
||||||
'Bookmarks found'
|
'Bookmarks found', false
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue